add wireless power adapter judgement
update the uploading condition: when Wi-Fi connected and wireless power connected
This commit is contained in:
parent
7b10cb3372
commit
9266698e4c
|
@ -37,7 +37,7 @@ public class SpiceProfilingUtil {
|
|||
final Intent intent = context.registerReceiver(null, new IntentFilter(Intent.ACTION_BATTERY_CHANGED));
|
||||
if (intent == null) return false;
|
||||
final int plugged = intent.getIntExtra(BatteryManager.EXTRA_PLUGGED, -1);
|
||||
return plugged == BatteryManager.BATTERY_PLUGGED_AC || plugged == BatteryManager.BATTERY_PLUGGED_USB;
|
||||
return plugged == BatteryManager.BATTERY_PLUGGED_AC || plugged == BatteryManager.BATTERY_PLUGGED_USB || plugged == BatteryManager.BATTERY_PLUGGED_WIRELESS;
|
||||
}
|
||||
|
||||
public static boolean log(final Context context, final String msg) {
|
||||
|
|
Loading…
Reference in New Issue