Skip to content

Commit

Permalink
Initial implementation for openAppStartSettings
Browse files Browse the repository at this point in the history
  • Loading branch information
katzer committed Feb 10, 2019
1 parent a966905 commit 8fbf210
Show file tree
Hide file tree
Showing 3 changed files with 119 additions and 5 deletions.
104 changes: 100 additions & 4 deletions src/android/BackgroundExt.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,11 @@ Licensed to the Apache Software Foundation (ASF) under one
import android.app.Activity;
import android.app.ActivityManager;
import android.app.ActivityManager.AppTask;
import android.app.AlertDialog;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.net.Uri;
import android.os.Build;
import android.os.PowerManager;
Expand All @@ -39,11 +42,18 @@ Licensed to the Apache Software Foundation (ASF) under one
import org.apache.cordova.CordovaWebView;
import org.apache.cordova.PluginResult;
import org.apache.cordova.PluginResult.Status;
import org.json.JSONArray;
import org.json.JSONObject;

import java.util.Arrays;
import java.util.List;

import static android.R.string.cancel;
import static android.R.string.ok;
import static android.R.style.Theme_DeviceDefault_Light_Dialog;
import static android.content.Context.ACTIVITY_SERVICE;
import static android.content.Context.POWER_SERVICE;
import static android.content.pm.PackageManager.MATCH_DEFAULT_ONLY;
import static android.os.Build.VERSION.SDK_INT;
import static android.os.Build.VERSION_CODES.M;
import static android.provider.Settings.ACTION_REQUEST_IGNORE_BATTERY_OPTIMIZATIONS;
Expand All @@ -58,6 +68,29 @@ Licensed to the Apache Software Foundation (ASF) under one
*/
class BackgroundExt {

// List of intents for various manufactures to adjust the power saver mode.
private static final List<Intent> APPSTART_INTENTS = Arrays.asList(
new Intent().setComponent(new ComponentName("com.miui.securitycenter","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.huawei.systemmanager", "com.huawei.systemmanager.appcontrol.activity.StartupAppControlActivity")),
new Intent().setComponent(new ComponentName("com.huawei.systemmanager", "com.huawei.systemmanager.optimize.process.ProtectActivity")),
new Intent().setComponent(new ComponentName("com.coloros.safecenter", "com.coloros.safecenter.permission.startup.StartupAppListActivity")),
new Intent().setComponent(new ComponentName("com.coloros.safecenter", "com.coloros.safecenter.startupapp.StartupAppListActivity")),
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().setComponent(new ComponentName("com.samsung.android.sm_cn", "com.samsung.android.sm.ui.ram.AutoRunActivity")),
new Intent().setComponent(ComponentName.unflattenFromString("com.iqoo.secure/.MainActivity")),
new Intent().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 ComponentName("cn.nubia.security2", "cn.nubia.security.appmanage.selfstart.ui.SelfStartActivity")),
new Intent().setComponent(new ComponentName("com.zui.safecenter", "com.lenovo.safecenter.MainTab.LeSafeMainActivity"))
);

// Reference to the cordova interface passed by the plugin
private final CordovaInterface cordova;

Expand All @@ -72,7 +105,7 @@ class BackgroundExt {
*
* @param plugin The cordova plugin.
*/
BackgroundExt(CordovaPlugin plugin)
private BackgroundExt (CordovaPlugin plugin)
{
this.cordova = plugin.cordova;
this.webView = plugin.webView;
Expand All @@ -82,22 +115,26 @@ class BackgroundExt {
* Executes the request within a thread.
*
* @param action The action to execute.
* @param args The exec() arguments.
* @param callback The callback context used when
* calling back into JavaScript.
*/
void executeAsync (String action, CallbackContext callback)
static void execute (CordovaPlugin plugin, String action, JSONArray args,
CallbackContext callback)
{
cordova.getThreadPool().execute(() -> execute(action, callback));
plugin.cordova.getThreadPool().execute(() -> new BackgroundExt(plugin).execute(action, args, callback));
}

/**
* Executes the request.
*
* @param action The action to execute.
* @param args The exec() arguments.
* @param callback The callback context used when
* calling back into JavaScript.
*/
private void execute (String action, CallbackContext callback)
private void execute (String action, JSONArray args,
CallbackContext callback)
{
switch (action)
{
Expand All @@ -107,6 +144,9 @@ private void execute (String action, CallbackContext callback)
case "webviewoptimizations":
disableWebViewOptimizations();
break;
case "appstart":
openAppStart(args.opt(0));
break;
case "background":
moveToBackground();
break;
Expand Down Expand Up @@ -186,6 +226,10 @@ public void run() {
thread.start();
}

/**
* Disables battery optimizations for the app.
* Requires permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS to function.
*/
@SuppressLint("BatteryLife")
private void disableBatteryOptimizations()
{
Expand All @@ -206,6 +250,58 @@ private void disableBatteryOptimizations()
cordova.getActivity().startActivity(intent);
}

/**
* Opens the system settings dialog where the user can tweak or turn off any
* custom app start settings added by the manufacturer if available.
*
* @param arg Text and title for the dialog or false to skip the dialog.
*/
private void openAppStart (Object arg)
{
Activity activity = cordova.getActivity();
PackageManager pm = activity.getPackageManager();

for (Intent intent : APPSTART_INTENTS)
{
if (pm.resolveActivity(intent, MATCH_DEFAULT_ONLY) != null)
{
JSONObject spec = (arg instanceof JSONObject) ? (JSONObject) arg : null;

intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

if (arg instanceof Boolean && !((Boolean) arg))
{
activity.startActivity(intent);
break;
}

AlertDialog.Builder dialog = new AlertDialog.Builder(activity, Theme_DeviceDefault_Light_Dialog);

dialog.setPositiveButton(ok, (o, d) -> activity.startActivity(intent));
dialog.setNegativeButton(cancel, (o, d) -> {});
dialog.setCancelable(true);

if (spec != null && spec.has("title"))
{
dialog.setTitle(spec.optString("title"));
}

if (spec != null && spec.has("text"))
{
dialog.setMessage(spec.optString("text"));
}
else
{
dialog.setMessage("missing text");
}

activity.runOnUiThread(dialog::show);

break;
}
}
}

/**
* Excludes the app from the recent tasks list.
*/
Expand Down
3 changes: 2 additions & 1 deletion src/android/BackgroundMode.java
Original file line number Diff line number Diff line change
Expand Up @@ -106,13 +106,14 @@ public boolean execute (String action, JSONArray args,
break;
case "webviewoptimizations":
case "batteryoptimizations":
case "appstart":
case "background":
case "foreground":
case "tasklist":
case "dimmed":
case "wakeup":
case "unlock":
new BackgroundExt(this).executeAsync(action, callback);
BackgroundExt.execute(this, action, args, callback);
break;
default:
validAction = false;
Expand Down
17 changes: 17 additions & 0 deletions www/background-mode.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,23 @@ exports.disableBatteryOptimizations = function()
}
};

/**
* Opens the system settings dialog where the user can tweak or turn off any
* custom app start settings added by the manufacturer if available.
*
* @param [ Object|Bool ] options Set to false if you dont want to display an
* alert dialog first.
*
* @return [ Void ]
*/
exports.openAppStartSettings = function (options)
{
if (this._isAndroid)
{
cordova.exec(null, null, 'BackgroundMode', 'appstart', [options]);
}
};

/**
* Move app to background (Android only).
*
Expand Down

0 comments on commit 8fbf210

Please sign in to comment.