4 Commits

Author SHA1 Message Date
Nathan Kerr
e11ee4f432 Apparently I don't know how to combine flags correctly
Closes #47
2022-08-25 14:22:50 -07:00
Nathan Kerr
d1d6396c07 Merge branch 'master' of bitbucket.org:TheBosZ/cordova-plugin-run-in-background 2022-04-22 09:06:11 -07:00
Nathan Kerr
8bc19edeb4 Fix for PendingIntent mutability and AndroidX 2022-04-22 09:01:07 -07:00
Nathan Kerr
df990e762f Merged in kerr/migrate-to-androidx (pull request #6)
Change from support library to androidx
2020-11-16 18:37:13 +00:00
6 changed files with 706 additions and 676 deletions

View File

@@ -1,4 +1,9 @@
## ChangeLog ## ChangeLog
#### Version 0.8.0
- Set PendingIntent mutability (fixes #45)
- Depend on cordova-androidx-build to automatically work with AndroidX
#### Version 0.7.3 (not yet released) #### Version 0.7.3 (not yet released)
- Check if screen is off on Android - Check if screen is off on Android
- Wake-up device on Android - Wake-up device on Android

View File

@@ -1,6 +1,6 @@
{ {
"name": "cordova-plugin-background-mode", "name": "cordova-plugin-background-mode",
"version": "0.7.3", "version": "0.8.0",
"description": "Prevent apps from going to sleep in background.", "description": "Prevent apps from going to sleep in background.",
"cordova": { "cordova": {
"id": "cordova-plugin-background-mode", "id": "cordova-plugin-background-mode",

View File

@@ -3,7 +3,7 @@
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-background-mode" id="cordova-plugin-background-mode"
version="0.7.3"> version="0.8.0">
<name>BackgroundMode</name> <name>BackgroundMode</name>
@@ -93,8 +93,8 @@
src="src/android/ForegroundService.java" src="src/android/ForegroundService.java"
target-dir="src/de/appplant/cordova/plugin/background" /> target-dir="src/de/appplant/cordova/plugin/background" />
<framework src="com.android.support:support-compat:27.1.1" /> <framework src="androidx.core:core:1.0.0" />
<framework src="com.github.judemanutd:autostarter:1.1.0" /> <dependency id="cordova-androidx-build" />
<resource-file src="src/android/res/drawable/power.xml" target="res/drawable/power.xml" /> <resource-file src="src/android/res/drawable/power.xml" target="res/drawable/power.xml" />
<resource-file src="src/android/res/drawable-hdpi/power.png" target="res/drawable-hdpi/power.png" /> <resource-file src="src/android/res/drawable-hdpi/power.png" target="res/drawable-hdpi/power.png" />
<resource-file src="src/android/res/drawable-mdpi/power.png" target="res/drawable-mdpi/power.png" /> <resource-file src="src/android/res/drawable-mdpi/power.png" target="res/drawable-mdpi/power.png" />

View File

@@ -37,8 +37,6 @@ import android.os.PowerManager;
import android.provider.Settings; import android.provider.Settings;
import android.view.View; import android.view.View;
import com.judemanutd.autostarter.AutoStartPermissionHelper;
import org.apache.cordova.CallbackContext; import org.apache.cordova.CallbackContext;
import org.apache.cordova.CordovaPlugin; import org.apache.cordova.CordovaPlugin;
import org.apache.cordova.PluginResult; import org.apache.cordova.PluginResult;
@@ -65,8 +63,8 @@ import static android.view.WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED;
import static android.view.WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON; import static android.view.WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON;
/** /**
* Implements extended functions around the main purpose of infinite execution * Implements extended functions around the main purpose
* in the background. * of infinite execution in the background.
*/ */
public class BackgroundModeExt extends CordovaPlugin { public class BackgroundModeExt extends CordovaPlugin {
@@ -78,15 +76,19 @@ public class BackgroundModeExt extends CordovaPlugin {
* *
* @param action The action to execute. * @param action The action to execute.
* @param args The exec() arguments. * @param args The exec() arguments.
* @param callback The callback context used when calling back into JavaScript. * @param callback The callback context used when
* calling back into JavaScript.
* *
* @return Returning false results in a "MethodNotFound" error. * @return Returning false results in a "MethodNotFound" error.
*/ */
@Override @Override
public boolean execute(String action, JSONArray args, CallbackContext callback) { public boolean execute (String action, JSONArray args,
CallbackContext callback)
{
boolean validAction = true; boolean validAction = true;
switch (action) { switch (action)
{
case "battery": case "battery":
disableBatteryOptimizations(); disableBatteryOptimizations();
break; break;
@@ -124,12 +126,6 @@ public class BackgroundModeExt extends CordovaPlugin {
wakeup(); wakeup();
unlock(); unlock();
break; break;
case "mightAutoKill":
mightAutoKill(callback);
break;
case "showAutoKill":
showAutoKill();
break;
default: default:
validAction = false; validAction = false;
} }
@@ -146,7 +142,8 @@ public class BackgroundModeExt extends CordovaPlugin {
/** /**
* Moves the app to the background. * Moves the app to the background.
*/ */
private void moveToBackground() { private void moveToBackground()
{
Intent intent = new Intent(Intent.ACTION_MAIN); Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_HOME); intent.addCategory(Intent.CATEGORY_HOME);
@@ -157,12 +154,15 @@ public class BackgroundModeExt extends CordovaPlugin {
/** /**
* Moves the app to the foreground. * Moves the app to the foreground.
*/ */
private void moveToForeground() { private void moveToForeground()
{
Activity app = getApp(); Activity app = getApp();
Intent intent = getLaunchIntent(); Intent intent = getLaunchIntent();
intent.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT | Intent.FLAG_ACTIVITY_SINGLE_TOP intent.addFlags(
| Intent.FLAG_ACTIVITY_CLEAR_TOP); Intent.FLAG_ACTIVITY_REORDER_TO_FRONT |
Intent.FLAG_ACTIVITY_SINGLE_TOP |
Intent.FLAG_ACTIVITY_CLEAR_TOP);
clearScreenAndKeyguardFlags(); clearScreenAndKeyguardFlags();
app.startActivity(intent); app.startActivity(intent);
@@ -172,7 +172,7 @@ public class BackgroundModeExt extends CordovaPlugin {
* Enable GPS position tracking while in background. * Enable GPS position tracking while in background.
*/ */
private void disableWebViewOptimizations() { private void disableWebViewOptimizations() {
Thread thread = new Thread() { Thread thread = new Thread(){
public void run() { public void run() {
try { try {
Thread.sleep(1000); Thread.sleep(1000);
@@ -180,8 +180,10 @@ public class BackgroundModeExt extends CordovaPlugin {
View view = webView.getView(); View view = webView.getView();
try { try {
Class.forName("org.crosswalk.engine.XWalkCordovaView").getMethod("onShow").invoke(view); Class.forName("org.crosswalk.engine.XWalkCordovaView")
} catch (Exception e) { .getMethod("onShow")
.invoke(view);
} catch (Exception e){
view.dispatchWindowVisibilityChanged(View.VISIBLE); view.dispatchWindowVisibilityChanged(View.VISIBLE);
} }
}); });
@@ -195,15 +197,16 @@ public class BackgroundModeExt extends CordovaPlugin {
} }
/** /**
* Disables battery optimizations for the app. Requires * Disables battery optimizations for the app.
* permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS to function. * Requires permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS to function.
*/ */
@SuppressLint("BatteryLife") @SuppressLint("BatteryLife")
private void disableBatteryOptimizations() { private void disableBatteryOptimizations()
{
Activity activity = cordova.getActivity(); Activity activity = cordova.getActivity();
Intent intent = new Intent(); Intent intent = new Intent();
String pkgName = activity.getPackageName(); String pkgName = activity.getPackageName();
PowerManager pm = (PowerManager) getService(POWER_SERVICE); PowerManager pm = (PowerManager)getService(POWER_SERVICE);
if (SDK_INT < M) if (SDK_INT < M)
return; return;
@@ -220,7 +223,8 @@ public class BackgroundModeExt extends CordovaPlugin {
/** /**
* Opens the Battery Optimization settings screen * Opens the Battery Optimization settings screen
*/ */
private void openBatterySettings() { private void openBatterySettings()
{
if (SDK_INT < M) if (SDK_INT < M)
return; return;
@@ -235,13 +239,14 @@ public class BackgroundModeExt extends CordovaPlugin {
* *
* @param callback The callback to invoke. * @param callback The callback to invoke.
*/ */
private void isIgnoringBatteryOptimizations(CallbackContext callback) { private void isIgnoringBatteryOptimizations(CallbackContext callback)
{
if (SDK_INT < M) if (SDK_INT < M)
return; return;
Activity activity = cordova.getActivity(); Activity activity = cordova.getActivity();
String pkgName = activity.getPackageName(); String pkgName = activity.getPackageName();
PowerManager pm = (PowerManager) getService(POWER_SERVICE); PowerManager pm = (PowerManager)getService(POWER_SERVICE);
boolean isIgnoring = pm.isIgnoringBatteryOptimizations(pkgName); boolean isIgnoring = pm.isIgnoringBatteryOptimizations(pkgName);
PluginResult res = new PluginResult(Status.OK, isIgnoring); PluginResult res = new PluginResult(Status.OK, isIgnoring);
@@ -268,17 +273,21 @@ public class BackgroundModeExt extends CordovaPlugin {
* *
* @param arg Text and title for the dialog or false to skip the dialog. * @param arg Text and title for the dialog or false to skip the dialog.
*/ */
private void openAppStart(Object arg) { private void openAppStart (Object arg)
{
Activity activity = cordova.getActivity(); Activity activity = cordova.getActivity();
PackageManager pm = activity.getPackageManager(); PackageManager pm = activity.getPackageManager();
for (Intent intent : getAppStartIntents()) { for (Intent intent : getAppStartIntents())
if (pm.resolveActivity(intent, MATCH_DEFAULT_ONLY) != null) { {
if (pm.resolveActivity(intent, MATCH_DEFAULT_ONLY) != null)
{
JSONObject spec = (arg instanceof JSONObject) ? (JSONObject) arg : null; JSONObject spec = (arg instanceof JSONObject) ? (JSONObject) arg : null;
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
if (arg instanceof Boolean && !((Boolean) arg)) { if (arg instanceof Boolean && !((Boolean) arg))
{
activity.startActivity(intent); activity.startActivity(intent);
break; break;
} }
@@ -286,17 +295,20 @@ public class BackgroundModeExt extends CordovaPlugin {
AlertDialog.Builder dialog = new AlertDialog.Builder(activity, Theme_DeviceDefault_Light_Dialog); AlertDialog.Builder dialog = new AlertDialog.Builder(activity, Theme_DeviceDefault_Light_Dialog);
dialog.setPositiveButton(ok, (o, d) -> activity.startActivity(intent)); dialog.setPositiveButton(ok, (o, d) -> activity.startActivity(intent));
dialog.setNegativeButton(cancel, (o, d) -> { dialog.setNegativeButton(cancel, (o, d) -> {});
});
dialog.setCancelable(true); dialog.setCancelable(true);
if (spec != null && spec.has("title")) { if (spec != null && spec.has("title"))
{
dialog.setTitle(spec.optString("title")); dialog.setTitle(spec.optString("title"));
} }
if (spec != null && spec.has("text")) { if (spec != null && spec.has("text"))
{
dialog.setMessage(spec.optString("text")); dialog.setMessage(spec.optString("text"));
} else { }
else
{
dialog.setMessage("missing text"); dialog.setMessage("missing text");
} }
@@ -311,7 +323,8 @@ public class BackgroundModeExt extends CordovaPlugin {
* Excludes the app from the recent tasks list. * Excludes the app from the recent tasks list.
*/ */
@TargetApi(Build.VERSION_CODES.LOLLIPOP) @TargetApi(Build.VERSION_CODES.LOLLIPOP)
private void excludeFromTaskList() { private void excludeFromTaskList()
{
ActivityManager am = (ActivityManager) getService(ACTIVITY_SERVICE); ActivityManager am = (ActivityManager) getService(ACTIVITY_SERVICE);
if (am == null || SDK_INT < 21) if (am == null || SDK_INT < 21)
@@ -331,7 +344,8 @@ public class BackgroundModeExt extends CordovaPlugin {
* @param callback The callback to invoke. * @param callback The callback to invoke.
*/ */
@SuppressWarnings("deprecation") @SuppressWarnings("deprecation")
private void isDimmed(CallbackContext callback) { private void isDimmed (CallbackContext callback)
{
boolean status = isDimmed(); boolean status = isDimmed();
PluginResult res = new PluginResult(Status.OK, status); PluginResult res = new PluginResult(Status.OK, status);
@@ -342,10 +356,12 @@ public class BackgroundModeExt extends CordovaPlugin {
* Returns if the screen is active. * Returns if the screen is active.
*/ */
@SuppressWarnings("deprecation") @SuppressWarnings("deprecation")
private boolean isDimmed() { private boolean isDimmed()
{
PowerManager pm = (PowerManager) getService(POWER_SERVICE); PowerManager pm = (PowerManager) getService(POWER_SERVICE);
if (SDK_INT < 20) { if (SDK_INT < 20)
{
return !pm.isScreenOn(); return !pm.isScreenOn();
} }
@@ -355,7 +371,8 @@ public class BackgroundModeExt extends CordovaPlugin {
/** /**
* Wakes up the device if the screen isn't still on. * Wakes up the device if the screen isn't still on.
*/ */
private void wakeup() { private void wakeup()
{
try { try {
acquireWakeLock(); acquireWakeLock();
} catch (Exception e) { } catch (Exception e) {
@@ -366,7 +383,8 @@ public class BackgroundModeExt extends CordovaPlugin {
/** /**
* Unlocks the device even with password protection. * Unlocks the device even with password protection.
*/ */
private void unlock() { private void unlock()
{
addSreenAndKeyguardFlags(); addSreenAndKeyguardFlags();
getApp().startActivity(getLaunchIntent()); getApp().startActivity(getLaunchIntent());
} }
@@ -375,7 +393,8 @@ public class BackgroundModeExt extends CordovaPlugin {
* Acquires a wake lock to wake up the device. * Acquires a wake lock to wake up the device.
*/ */
@SuppressWarnings("deprecation") @SuppressWarnings("deprecation")
private void acquireWakeLock() { private void acquireWakeLock()
{
PowerManager pm = (PowerManager) getService(POWER_SERVICE); PowerManager pm = (PowerManager) getService(POWER_SERVICE);
releaseWakeLock(); releaseWakeLock();
@@ -383,7 +402,8 @@ public class BackgroundModeExt extends CordovaPlugin {
if (!isDimmed()) if (!isDimmed())
return; return;
int level = PowerManager.SCREEN_DIM_WAKE_LOCK | PowerManager.ACQUIRE_CAUSES_WAKEUP; int level = PowerManager.SCREEN_DIM_WAKE_LOCK |
PowerManager.ACQUIRE_CAUSES_WAKEUP;
wakeLock = pm.newWakeLock(level, "backgroundmode:wakelock"); wakeLock = pm.newWakeLock(level, "backgroundmode:wakelock");
wakeLock.setReferenceCounted(false); wakeLock.setReferenceCounted(false);
@@ -393,51 +413,35 @@ public class BackgroundModeExt extends CordovaPlugin {
/** /**
* Releases the previously acquire wake lock. * Releases the previously acquire wake lock.
*/ */
private void releaseWakeLock() { private void releaseWakeLock()
{
if (wakeLock != null && wakeLock.isHeld()) { if (wakeLock != null && wakeLock.isHeld()) {
wakeLock.release(); wakeLock.release();
wakeLock = null; wakeLock = null;
} }
} }
private void showAutoKill() {
Context context = getApp().getApplicationContext();
AutoStartPermissionHelper instance = AutoStartPermissionHelper.Companion.getInstance();
boolean isKilled = instance.isAutoStartPermissionAvailable(context, false);
if (isKilled) {
instance.getAutoStartPermission(context, true, true);
}
}
private void mightAutoKill(CallbackContext callback) {
Context context = getApp().getApplicationContext();
AutoStartPermissionHelper instance = AutoStartPermissionHelper.Companion.getInstance();
boolean isKilled = instance.isAutoStartPermissionAvailable(context, false);
PluginResult res = new PluginResult(Status.OK, isKilled);
callback.sendPluginResult(res);
}
/** /**
* Adds required flags to the window to unlock/wakeup the device. * Adds required flags to the window to unlock/wakeup the device.
*/ */
private void addSreenAndKeyguardFlags() { private void addSreenAndKeyguardFlags()
getApp().runOnUiThread(() -> getApp().getWindow().addFlags( {
FLAG_ALLOW_LOCK_WHILE_SCREEN_ON | FLAG_SHOW_WHEN_LOCKED | FLAG_TURN_SCREEN_ON | FLAG_DISMISS_KEYGUARD)); getApp().runOnUiThread(() -> getApp().getWindow().addFlags(FLAG_ALLOW_LOCK_WHILE_SCREEN_ON | FLAG_SHOW_WHEN_LOCKED | FLAG_TURN_SCREEN_ON | FLAG_DISMISS_KEYGUARD));
} }
/** /**
* Clears required flags to the window to unlock/wakeup the device. * Clears required flags to the window to unlock/wakeup the device.
*/ */
private void clearScreenAndKeyguardFlags() { private void clearScreenAndKeyguardFlags()
getApp().runOnUiThread(() -> getApp().getWindow().clearFlags( {
FLAG_ALLOW_LOCK_WHILE_SCREEN_ON | FLAG_SHOW_WHEN_LOCKED | FLAG_TURN_SCREEN_ON | FLAG_DISMISS_KEYGUARD)); getApp().runOnUiThread(() -> getApp().getWindow().clearFlags(FLAG_ALLOW_LOCK_WHILE_SCREEN_ON | FLAG_SHOW_WHEN_LOCKED | FLAG_TURN_SCREEN_ON | FLAG_DISMISS_KEYGUARD));
} }
/** /**
* Removes required flags to the window to unlock/wakeup the device. * Removes required flags to the window to unlock/wakeup the device.
*/ */
static void clearKeyguardFlags(Activity app) { static void clearKeyguardFlags (Activity app)
{
app.runOnUiThread(() -> app.getWindow().clearFlags(FLAG_DISMISS_KEYGUARD)); app.runOnUiThread(() -> app.getWindow().clearFlags(FLAG_DISMISS_KEYGUARD));
} }
@@ -451,7 +455,8 @@ public class BackgroundModeExt extends CordovaPlugin {
/** /**
* Gets the launch intent for the main activity. * Gets the launch intent for the main activity.
*/ */
private Intent getLaunchIntent() { private Intent getLaunchIntent()
{
Context app = getApp().getApplicationContext(); Context app = getApp().getApplicationContext();
String pkgName = app.getPackageName(); String pkgName = app.getPackageName();
@@ -463,52 +468,36 @@ public class BackgroundModeExt extends CordovaPlugin {
* *
* @param name The name of the service. * @param name The name of the service.
*/ */
private Object getService(String name) { private Object getService(String name)
{
return getApp().getSystemService(name); return getApp().getSystemService(name);
} }
/** /**
* Returns list of all possible intents to present the app start settings. * Returns list of all possible intents to present the app start settings.
*/ */
private List<Intent> getAppStartIntents() { private List<Intent> getAppStartIntents()
{
return Arrays.asList( return Arrays.asList(
new Intent().setComponent(new ComponentName("com.miui.securitycenter", new Intent().setComponent(new ComponentName("com.miui.securitycenter","com.miui.permcenter.autostart.AutoStartManagementActivity")),
"com.miui.permcenter.autostart.AutoStartManagementActivity")), new Intent().setComponent(new ComponentName("com.letv.android.letvsafe", "com.letv.android.letvsafe.AutobootManageActivity")),
new Intent().setComponent(new ComponentName("com.letv.android.letvsafe", new Intent().setComponent(new ComponentName("com.huawei.systemmanager", "com.huawei.systemmanager.appcontrol.activity.StartupAppControlActivity")),
"com.letv.android.letvsafe.AutobootManageActivity")), new Intent().setComponent(new ComponentName("com.huawei.systemmanager", "com.huawei.systemmanager.optimize.process.ProtectActivity")),
new Intent().setComponent(new ComponentName("com.huawei.systemmanager", new Intent().setComponent(new ComponentName("com.coloros.safecenter", "com.coloros.safecenter.permission.startup.StartupAppListActivity")),
"com.huawei.systemmanager.appcontrol.activity.StartupAppControlActivity")), new Intent().setComponent(new ComponentName("com.coloros.safecenter", "com.coloros.safecenter.startupapp.StartupAppListActivity")),
new Intent().setComponent(new ComponentName("com.huawei.systemmanager", new Intent().setComponent(new ComponentName("com.oppo.safe", "com.oppo.safe.permission.startup.StartupAppListActivity")),
"com.huawei.systemmanager.optimize.process.ProtectActivity")), new Intent().setComponent(new ComponentName("com.iqoo.secure", "com.iqoo.secure.ui.phoneoptimize.AddWhiteListActivity")),
new Intent().setComponent(new ComponentName("com.coloros.safecenter", new Intent().setComponent(new ComponentName("com.iqoo.secure", "com.iqoo.secure.ui.phoneoptimize.BgStartUpManager")),
"com.coloros.safecenter.permission.startup.StartupAppListActivity")), new Intent().setComponent(new ComponentName("com.vivo.permissionmanager", "com.vivo.permissionmanager.activity.BgStartUpManagerActivity")),
new Intent().setComponent(new ComponentName("com.coloros.safecenter", new Intent().setComponent(new ComponentName("com.asus.mobilemanager", "com.asus.mobilemanager.autostart.AutoStartActivity")),
"com.coloros.safecenter.startupapp.StartupAppListActivity")), new Intent().setComponent(new ComponentName("com.asus.mobilemanager", "com.asus.mobilemanager.entry.FunctionActivity")).setData(android.net.Uri.parse("mobilemanager://function/entry/AutoStart")),
new Intent().setComponent(
new ComponentName("com.oppo.safe", "com.oppo.safe.permission.startup.StartupAppListActivity")),
new Intent().setComponent(
new ComponentName("com.iqoo.secure", "com.iqoo.secure.ui.phoneoptimize.AddWhiteListActivity")),
new Intent().setComponent(
new ComponentName("com.iqoo.secure", "com.iqoo.secure.ui.phoneoptimize.BgStartUpManager")),
new Intent().setComponent(new ComponentName("com.vivo.permissionmanager",
"com.vivo.permissionmanager.activity.BgStartUpManagerActivity")),
new Intent().setComponent(new ComponentName("com.asus.mobilemanager",
"com.asus.mobilemanager.autostart.AutoStartActivity")),
new Intent()
.setComponent(new ComponentName("com.asus.mobilemanager",
"com.asus.mobilemanager.entry.FunctionActivity"))
.setData(android.net.Uri.parse("mobilemanager://function/entry/AutoStart")),
new Intent().setAction("com.letv.android.permissionautoboot"), new Intent().setAction("com.letv.android.permissionautoboot"),
new Intent().setComponent(new ComponentName("com.samsung.android.sm_cn", new Intent().setComponent(new ComponentName("com.samsung.android.sm_cn", "com.samsung.android.sm.ui.ram.AutoRunActivity")),
"com.samsung.android.sm.ui.ram.AutoRunActivity")),
new Intent().setComponent(ComponentName.unflattenFromString("com.iqoo.secure/.MainActivity")), new Intent().setComponent(ComponentName.unflattenFromString("com.iqoo.secure/.MainActivity")),
new Intent() new Intent().setComponent(ComponentName.unflattenFromString("com.meizu.safe/.permission.SmartBGActivity")),
.setComponent(ComponentName.unflattenFromString("com.meizu.safe/.permission.SmartBGActivity")), new Intent().setComponent(new ComponentName("com.yulong.android.coolsafe", ".ui.activity.autorun.AutoRunListActivity")),
new Intent().setComponent( new Intent().setComponent(new ComponentName("cn.nubia.security2", "cn.nubia.security.appmanage.selfstart.ui.SelfStartActivity")),
new ComponentName("com.yulong.android.coolsafe", ".ui.activity.autorun.AutoRunListActivity")), new Intent().setComponent(new ComponentName("com.zui.safecenter", "com.lenovo.safecenter.MainTab.LeSafeMainActivity"))
new Intent().setComponent(new ComponentName("cn.nubia.security2", );
"cn.nubia.security.appmanage.selfstart.ui.SelfStartActivity")),
new Intent().setComponent(
new ComponentName("com.zui.safecenter", "com.lenovo.safecenter.MainTab.LeSafeMainActivity")));
} }
} }

View File

@@ -33,7 +33,7 @@ import android.os.Build;
import android.os.IBinder; import android.os.IBinder;
import android.os.PowerManager; import android.os.PowerManager;
import org.json.JSONObject; import org.json.JSONObject;
import android.support.v4.app.NotificationCompat; import androidx.core.app.NotificationCompat;
import static android.os.PowerManager.PARTIAL_WAKE_LOCK; import static android.os.PowerManager.PARTIAL_WAKE_LOCK;
@@ -215,7 +215,7 @@ public class ForegroundService extends Service {
if (settings.optBoolean("allowClose", false)) { if (settings.optBoolean("allowClose", false)) {
final Intent clostAppIntent = new Intent("com.backgroundmode.close" + pkgName); final Intent clostAppIntent = new Intent("com.backgroundmode.close" + pkgName);
final PendingIntent closeIntent = PendingIntent.getBroadcast(context, 1337, clostAppIntent, 0); final PendingIntent closeIntent = PendingIntent.getBroadcast(context, 1337, clostAppIntent, PendingIntent.FLAG_IMMUTABLE);
final String closeIconName = settings.optString("closeIcon", "power"); final String closeIconName = settings.optString("closeIcon", "power");
NotificationCompat.Action.Builder closeAction = new NotificationCompat.Action.Builder(getIconResId(closeIconName), settings.optString("closeTitle", "Close"), closeIntent); NotificationCompat.Action.Builder closeAction = new NotificationCompat.Action.Builder(getIconResId(closeIconName), settings.optString("closeTitle", "Close"), closeIntent);
notification.addAction(closeAction.build()); notification.addAction(closeAction.build());
@@ -240,7 +240,7 @@ public class ForegroundService extends Service {
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP); intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
PendingIntent contentIntent = PendingIntent.getActivity( PendingIntent contentIntent = PendingIntent.getActivity(
context, NOTIFICATION_ID, intent, context, NOTIFICATION_ID, intent,
PendingIntent.FLAG_UPDATE_CURRENT); PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_IMMUTABLE);
notification.setContentIntent(contentIntent); notification.setContentIntent(contentIntent);

View File

@@ -29,11 +29,12 @@ var exec = require('cordova/exec'),
* *
* @return [ Void ] * @return [ Void ]
*/ */
exports.enable = function () { exports.enable = function()
{
if (this.isEnabled()) if (this.isEnabled())
return; return;
var fn = function () { var fn = function() {
exports._isEnabled = true; exports._isEnabled = true;
exports.fireEvent('enable'); exports.fireEvent('enable');
}; };
@@ -47,11 +48,12 @@ exports.enable = function () {
* *
* @return [ Void ] * @return [ Void ]
*/ */
exports.disable = function () { exports.disable = function()
{
if (!this.isEnabled()) if (!this.isEnabled())
return; return;
var fn = function () { var fn = function() {
exports._isEnabled = false; exports._isEnabled = false;
exports.fireEvent('disable'); exports.fireEvent('disable');
}; };
@@ -66,7 +68,8 @@ exports.disable = function () {
* *
* @return [ Void ] * @return [ Void ]
*/ */
exports.setEnabled = function (enable) { exports.setEnabled = function (enable)
{
if (enable) { if (enable) {
this.enable(); this.enable();
} else { } else {
@@ -79,7 +82,8 @@ exports.setEnabled = function (enable) {
* *
* @return [ Object ] * @return [ Object ]
*/ */
exports.getDefaults = function () { exports.getDefaults = function()
{
return this._defaults; return this._defaults;
}; };
@@ -88,7 +92,8 @@ exports.getDefaults = function () {
* *
* @return [ Object ] * @return [ Object ]
*/ */
exports.getSettings = function () { exports.getSettings = function()
{
return this._settings || {}; return this._settings || {};
}; };
@@ -99,16 +104,20 @@ exports.getSettings = function () {
* *
* @return [ Void ] * @return [ Void ]
*/ */
exports.setDefaults = function (overrides) { exports.setDefaults = function (overrides)
{
var defaults = this.getDefaults(); var defaults = this.getDefaults();
for (var key in defaults) { for (var key in defaults)
if (overrides.hasOwnProperty(key)) { {
if (overrides.hasOwnProperty(key))
{
defaults[key] = overrides[key]; defaults[key] = overrides[key];
} }
} }
if (this._isAndroid) { if (this._isAndroid)
{
cordova.exec(null, null, 'BackgroundMode', 'configure', [defaults, false]); cordova.exec(null, null, 'BackgroundMode', 'configure', [defaults, false]);
} }
}; };
@@ -121,14 +130,16 @@ exports.setDefaults = function (overrides) {
* *
* @return [ Void ] * @return [ Void ]
*/ */
exports.configure = function (options) { exports.configure = function (options)
{
var settings = this.getSettings(), var settings = this.getSettings(),
defaults = this.getDefaults(); defaults = this.getDefaults();
if (!this._isAndroid) if (!this._isAndroid)
return; return;
if (!this._isActive) { if (!this._isActive)
{
console.log('BackgroundMode is not active, skipped...'); console.log('BackgroundMode is not active, skipped...');
return; return;
} }
@@ -145,8 +156,10 @@ exports.configure = function (options) {
* *
* @return [ Void ] * @return [ Void ]
*/ */
exports.disableWebViewOptimizations = function () { exports.disableWebViewOptimizations = function()
if (this._isAndroid) { {
if (this._isAndroid)
{
cordova.exec(null, null, 'BackgroundModeExt', 'webview', []); cordova.exec(null, null, 'BackgroundModeExt', 'webview', []);
} }
}; };
@@ -156,8 +169,10 @@ exports.disableWebViewOptimizations = function () {
* *
* @return [ Void ] * @return [ Void ]
*/ */
exports.disableBatteryOptimizations = function () { exports.disableBatteryOptimizations = function()
if (this._isAndroid) { {
if (this._isAndroid)
{
cordova.exec(null, null, 'BackgroundModeExt', 'battery', []); cordova.exec(null, null, 'BackgroundModeExt', 'battery', []);
} }
}; };
@@ -168,8 +183,10 @@ exports.disableBatteryOptimizations = function () {
* *
* @return [ Void ] * @return [ Void ]
*/ */
exports.openBatteryOptimizationsSettings = function () { exports.openBatteryOptimizationsSettings = function()
if (this._isAndroid) { {
if (this._isAndroid)
{
cordova.exec(null, null, 'BackgroundModeExt', 'batterysettings', []); cordova.exec(null, null, 'BackgroundModeExt', 'batterysettings', []);
} }
}; };
@@ -180,34 +197,18 @@ exports.openBatteryOptimizationsSettings = function () {
* *
* @return [ Void ] * @return [ Void ]
*/ */
exports.isIgnoringBatteryOptimizations = function (callback) { exports.isIgnoringBatteryOptimizations = function(callback)
if (this._isAndroid) { {
if (this._isAndroid)
{
cordova.exec(callback, null, 'BackgroundModeExt', 'optimizationstatus', []); cordova.exec(callback, null, 'BackgroundModeExt', 'optimizationstatus', []);
} }
else { else
{
callback(true); callback(true);
} }
}; };
/**
* Reports potential "auto kill".
* @see https://github.com/judemanutd/AutoStarter
* @return [ Boolean ]
*/
exports.mightAutoKill = function (callback) {
if (this._isAndroid) {
cordova.exec(callback, null, 'BackgroundModeExt', 'mightAutoKill', []);
} else {
callback(false);
}
};
exports.showAutoKill = function () {
if (this._isAndroid) {
cordova.exec(null, null, 'BackgroundModeExt', 'showAutoKill', []);
}
};
/** /**
* Opens the system settings dialog where the user can tweak or turn off any * Opens the system settings dialog where the user can tweak or turn off any
* custom app start settings added by the manufacturer if available. * custom app start settings added by the manufacturer if available.
@@ -217,8 +218,10 @@ exports.showAutoKill = function () {
* *
* @return [ Void ] * @return [ Void ]
*/ */
exports.openAppStartSettings = function (options) { exports.openAppStartSettings = function (options)
if (this._isAndroid) { {
if (this._isAndroid)
{
cordova.exec(null, null, 'BackgroundModeExt', 'appstart', [options]); cordova.exec(null, null, 'BackgroundModeExt', 'appstart', [options]);
} }
}; };
@@ -228,8 +231,10 @@ exports.openAppStartSettings = function (options) {
* *
* @return [ Void ] * @return [ Void ]
*/ */
exports.moveToBackground = function () { exports.moveToBackground = function()
if (this._isAndroid) { {
if (this._isAndroid)
{
cordova.exec(null, null, 'BackgroundModeExt', 'background', []); cordova.exec(null, null, 'BackgroundModeExt', 'background', []);
} }
}; };
@@ -239,8 +244,10 @@ exports.moveToBackground = function () {
* *
* @return [ Void ] * @return [ Void ]
*/ */
exports.moveToForeground = function () { exports.moveToForeground = function()
if (this.isActive() && this._isAndroid) { {
if (this.isActive() && this._isAndroid)
{
cordova.exec(null, null, 'BackgroundModeExt', 'foreground', []); cordova.exec(null, null, 'BackgroundModeExt', 'foreground', []);
} }
}; };
@@ -250,7 +257,7 @@ exports.moveToForeground = function () {
* *
* @return [ Void ] * @return [ Void ]
*/ */
exports.requestForegroundPermission = function () { exports.requestForegroundPermission = function() {
if (this._isAndroid) { if (this._isAndroid) {
cordova.exec(null, null, 'BackgroundModeExt', 'requestTopPermissions', []); cordova.exec(null, null, 'BackgroundModeExt', 'requestTopPermissions', []);
} }
@@ -261,8 +268,10 @@ exports.requestForegroundPermission = function () {
* *
* @return [ Void ] * @return [ Void ]
*/ */
exports.excludeFromTaskList = function () { exports.excludeFromTaskList = function()
if (this._isAndroid) { {
if (this._isAndroid)
{
cordova.exec(null, null, 'BackgroundModeExt', 'tasklist', []); cordova.exec(null, null, 'BackgroundModeExt', 'tasklist', []);
} }
}; };
@@ -273,8 +282,9 @@ exports.excludeFromTaskList = function () {
* *
* @return [ Void ] * @return [ Void ]
*/ */
exports.overrideBackButton = function () { exports.overrideBackButton = function()
document.addEventListener('backbutton', function () { {
document.addEventListener('backbutton', function() {
exports.moveToBackground(); exports.moveToBackground();
}, false); }, false);
}; };
@@ -286,11 +296,14 @@ exports.overrideBackButton = function () {
* *
* @return [ Void ] * @return [ Void ]
*/ */
exports.isScreenOff = function (fn) { exports.isScreenOff = function (fn)
if (this._isAndroid) { {
if (this._isAndroid)
{
cordova.exec(fn, null, 'BackgroundModeExt', 'dimmed', []); cordova.exec(fn, null, 'BackgroundModeExt', 'dimmed', []);
} }
else { else
{
fn(undefined); fn(undefined);
} }
}; };
@@ -300,8 +313,10 @@ exports.isScreenOff = function (fn) {
* *
* @return [ Void ] * @return [ Void ]
*/ */
exports.wakeUp = function () { exports.wakeUp = function()
if (this._isAndroid) { {
if (this._isAndroid)
{
cordova.exec(null, null, 'BackgroundModeExt', 'wakeup', []); cordova.exec(null, null, 'BackgroundModeExt', 'wakeup', []);
} }
}; };
@@ -311,8 +326,10 @@ exports.wakeUp = function () {
* *
* @return [ Void ] * @return [ Void ]
*/ */
exports.unlock = function () { exports.unlock = function()
if (this._isAndroid) { {
if (this._isAndroid)
{
cordova.exec(null, null, 'BackgroundModeExt', 'unlock', []); cordova.exec(null, null, 'BackgroundModeExt', 'unlock', []);
} }
}; };
@@ -322,7 +339,8 @@ exports.unlock = function () {
* *
* @return [ Boolean ] * @return [ Boolean ]
*/ */
exports.isEnabled = function () { exports.isEnabled = function()
{
return this._isEnabled !== false; return this._isEnabled !== false;
}; };
@@ -331,7 +349,8 @@ exports.isEnabled = function () {
* *
* @return [ Boolean ] * @return [ Boolean ]
*/ */
exports.isActive = function () { exports.isActive = function()
{
return this._isActive !== false; return this._isActive !== false;
}; };
@@ -345,14 +364,16 @@ exports._listener = {};
* *
* @return [ Void ] * @return [ Void ]
*/ */
exports.fireEvent = function (event) { exports.fireEvent = function (event)
{
var args = Array.apply(null, arguments).slice(1), var args = Array.apply(null, arguments).slice(1),
listener = this._listener[event]; listener = this._listener[event];
if (!listener) if (!listener)
return; return;
for (var i = 0; i < listener.length; i++) { for (var i = 0; i < listener.length; i++)
{
var fn = listener[i][0], var fn = listener[i][0],
scope = listener[i][1]; scope = listener[i][1];
@@ -369,11 +390,13 @@ exports.fireEvent = function (event) {
* *
* @return [ Void ] * @return [ Void ]
*/ */
exports.on = function (event, callback, scope) { exports.on = function (event, callback, scope)
{
if (typeof callback !== "function") if (typeof callback !== "function")
return; return;
if (!this._listener[event]) { if (!this._listener[event])
{
this._listener[event] = []; this._listener[event] = [];
} }
@@ -390,16 +413,19 @@ exports.on = function (event, callback, scope) {
* *
* @return [ Void ] * @return [ Void ]
*/ */
exports.un = function (event, callback) { exports.un = function (event, callback)
{
var listener = this._listener[event]; var listener = this._listener[event];
if (!listener) if (!listener)
return; return;
for (var i = 0; i < listener.length; i++) { for (var i = 0; i < listener.length; i++)
{
var fn = listener[i][0]; var fn = listener[i][0];
if (fn == callback) { if (fn == callback)
{
listener.splice(i, 1); listener.splice(i, 1);
break; break;
} }
@@ -455,9 +481,12 @@ exports._defaults = {
* *
* @return [ Object ] Default values merged with custom values. * @return [ Object ] Default values merged with custom values.
*/ */
exports._mergeObjects = function (options, toMergeIn) { exports._mergeObjects = function (options, toMergeIn)
for (var key in toMergeIn) { {
if (!options.hasOwnProperty(key)) { for (var key in toMergeIn)
{
if (!options.hasOwnProperty(key))
{
options[key] = toMergeIn[key]; options[key] = toMergeIn[key];
continue; continue;
} }
@@ -476,7 +505,8 @@ exports._mergeObjects = function (options, toMergeIn) {
* *
* @return [ Void ] * @return [ Void ]
*/ */
exports._setActive = function (value) { exports._setActive = function(value)
{
if (this._isActive == value) if (this._isActive == value)
return; return;
@@ -494,11 +524,13 @@ exports._setActive = function (value) {
* *
* @return [ Void ] * @return [ Void ]
*/ */
exports._pluginInitialize = function () { exports._pluginInitialize = function()
{
this._isAndroid = device.platform.match(/^android|amazon/i) !== null; this._isAndroid = device.platform.match(/^android|amazon/i) !== null;
this.setDefaults({}); this.setDefaults({});
if (device.platform == 'browser') { if (device.platform == 'browser')
{
this.enable(); this.enable();
this._isEnabled = true; this._isEnabled = true;
} }
@@ -507,19 +539,23 @@ exports._pluginInitialize = function () {
}; };
// Called before 'deviceready' listener will be called // Called before 'deviceready' listener will be called
channel.onCordovaReady.subscribe(function () { channel.onCordovaReady.subscribe(function()
channel.onCordovaInfoReady.subscribe(function () { {
channel.onCordovaInfoReady.subscribe(function() {
exports._pluginInitialize(); exports._pluginInitialize();
}); });
}); });
// Called after 'deviceready' event // Called after 'deviceready' event
channel.deviceready.subscribe(function () { channel.deviceready.subscribe(function()
if (exports.isEnabled()) { {
if (exports.isEnabled())
{
exports.fireEvent('enable'); exports.fireEvent('enable');
} }
if (exports.isActive()) { if (exports.isActive())
{
exports.fireEvent('activate'); exports.fireEvent('activate');
} }
}); });