mirror of
https://bitbucket.org/TheBosZ/cordova-plugin-run-in-background
synced 2024-11-14 19:44:53 +00:00
Add AutoStarter library to help prevent auto kill
https://github.com/judemanutd/AutoStarter
This commit is contained in:
parent
b33044c8e5
commit
c602a8a101
@ -94,6 +94,7 @@
|
|||||||
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="com.android.support:support-compat:27.1.1" />
|
||||||
|
<framework src="com.github.judemanutd:autostarter:1.1.0" />
|
||||||
<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" />
|
||||||
|
@ -37,6 +37,8 @@ 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;
|
||||||
@ -63,8 +65,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
|
* Implements extended functions around the main purpose of infinite execution
|
||||||
* of infinite execution in the background.
|
* in the background.
|
||||||
*/
|
*/
|
||||||
public class BackgroundModeExt extends CordovaPlugin {
|
public class BackgroundModeExt extends CordovaPlugin {
|
||||||
|
|
||||||
@ -76,19 +78,15 @@ 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
|
* @param callback The callback context used when calling back into JavaScript.
|
||||||
* 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,
|
public boolean execute(String action, JSONArray args, CallbackContext callback) {
|
||||||
CallbackContext callback)
|
|
||||||
{
|
|
||||||
boolean validAction = true;
|
boolean validAction = true;
|
||||||
|
|
||||||
switch (action)
|
switch (action) {
|
||||||
{
|
|
||||||
case "battery":
|
case "battery":
|
||||||
disableBatteryOptimizations();
|
disableBatteryOptimizations();
|
||||||
break;
|
break;
|
||||||
@ -126,6 +124,12 @@ 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;
|
||||||
}
|
}
|
||||||
@ -142,8 +146,7 @@ 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);
|
||||||
@ -154,15 +157,12 @@ 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.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT | Intent.FLAG_ACTIVITY_SINGLE_TOP
|
||||||
Intent.FLAG_ACTIVITY_REORDER_TO_FRONT |
|
| Intent.FLAG_ACTIVITY_CLEAR_TOP);
|
||||||
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,10 +180,8 @@ public class BackgroundModeExt extends CordovaPlugin {
|
|||||||
View view = webView.getView();
|
View view = webView.getView();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
Class.forName("org.crosswalk.engine.XWalkCordovaView")
|
Class.forName("org.crosswalk.engine.XWalkCordovaView").getMethod("onShow").invoke(view);
|
||||||
.getMethod("onShow")
|
} catch (Exception e) {
|
||||||
.invoke(view);
|
|
||||||
} catch (Exception e){
|
|
||||||
view.dispatchWindowVisibilityChanged(View.VISIBLE);
|
view.dispatchWindowVisibilityChanged(View.VISIBLE);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -197,16 +195,15 @@ public class BackgroundModeExt extends CordovaPlugin {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Disables battery optimizations for the app.
|
* Disables battery optimizations for the app. Requires
|
||||||
* Requires permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS to function.
|
* 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;
|
||||||
@ -223,8 +220,7 @@ 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;
|
||||||
|
|
||||||
@ -239,14 +235,13 @@ 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);
|
||||||
|
|
||||||
@ -273,21 +268,17 @@ 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;
|
||||||
}
|
}
|
||||||
@ -295,20 +286,17 @@ 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");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -323,8 +311,7 @@ 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)
|
||||||
@ -344,8 +331,7 @@ 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);
|
||||||
|
|
||||||
@ -356,12 +342,10 @@ 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();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -371,8 +355,7 @@ 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) {
|
||||||
@ -383,8 +366,7 @@ 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());
|
||||||
}
|
}
|
||||||
@ -393,8 +375,7 @@ 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();
|
||||||
@ -402,8 +383,7 @@ public class BackgroundModeExt extends CordovaPlugin {
|
|||||||
if (!isDimmed())
|
if (!isDimmed())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
int level = PowerManager.SCREEN_DIM_WAKE_LOCK |
|
int level = PowerManager.SCREEN_DIM_WAKE_LOCK | PowerManager.ACQUIRE_CAUSES_WAKEUP;
|
||||||
PowerManager.ACQUIRE_CAUSES_WAKEUP;
|
|
||||||
|
|
||||||
wakeLock = pm.newWakeLock(level, "backgroundmode:wakelock");
|
wakeLock = pm.newWakeLock(level, "backgroundmode:wakelock");
|
||||||
wakeLock.setReferenceCounted(false);
|
wakeLock.setReferenceCounted(false);
|
||||||
@ -413,35 +393,51 @@ 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(
|
||||||
getApp().runOnUiThread(() -> getApp().getWindow().addFlags(FLAG_ALLOW_LOCK_WHILE_SCREEN_ON | FLAG_SHOW_WHEN_LOCKED | FLAG_TURN_SCREEN_ON | FLAG_DISMISS_KEYGUARD));
|
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(
|
||||||
getApp().runOnUiThread(() -> getApp().getWindow().clearFlags(FLAG_ALLOW_LOCK_WHILE_SCREEN_ON | FLAG_SHOW_WHEN_LOCKED | FLAG_TURN_SCREEN_ON | FLAG_DISMISS_KEYGUARD));
|
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));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -455,8 +451,7 @@ 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();
|
||||||
|
|
||||||
@ -468,36 +463,52 @@ 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","com.miui.permcenter.autostart.AutoStartManagementActivity")),
|
new Intent().setComponent(new ComponentName("com.miui.securitycenter",
|
||||||
new Intent().setComponent(new ComponentName("com.letv.android.letvsafe", "com.letv.android.letvsafe.AutobootManageActivity")),
|
"com.miui.permcenter.autostart.AutoStartManagementActivity")),
|
||||||
new Intent().setComponent(new ComponentName("com.huawei.systemmanager", "com.huawei.systemmanager.appcontrol.activity.StartupAppControlActivity")),
|
new Intent().setComponent(new ComponentName("com.letv.android.letvsafe",
|
||||||
new Intent().setComponent(new ComponentName("com.huawei.systemmanager", "com.huawei.systemmanager.optimize.process.ProtectActivity")),
|
"com.letv.android.letvsafe.AutobootManageActivity")),
|
||||||
new Intent().setComponent(new ComponentName("com.coloros.safecenter", "com.coloros.safecenter.permission.startup.StartupAppListActivity")),
|
new Intent().setComponent(new ComponentName("com.huawei.systemmanager",
|
||||||
new Intent().setComponent(new ComponentName("com.coloros.safecenter", "com.coloros.safecenter.startupapp.StartupAppListActivity")),
|
"com.huawei.systemmanager.appcontrol.activity.StartupAppControlActivity")),
|
||||||
new Intent().setComponent(new ComponentName("com.oppo.safe", "com.oppo.safe.permission.startup.StartupAppListActivity")),
|
new Intent().setComponent(new ComponentName("com.huawei.systemmanager",
|
||||||
new Intent().setComponent(new ComponentName("com.iqoo.secure", "com.iqoo.secure.ui.phoneoptimize.AddWhiteListActivity")),
|
"com.huawei.systemmanager.optimize.process.ProtectActivity")),
|
||||||
new Intent().setComponent(new ComponentName("com.iqoo.secure", "com.iqoo.secure.ui.phoneoptimize.BgStartUpManager")),
|
new Intent().setComponent(new ComponentName("com.coloros.safecenter",
|
||||||
new Intent().setComponent(new ComponentName("com.vivo.permissionmanager", "com.vivo.permissionmanager.activity.BgStartUpManagerActivity")),
|
"com.coloros.safecenter.permission.startup.StartupAppListActivity")),
|
||||||
new Intent().setComponent(new ComponentName("com.asus.mobilemanager", "com.asus.mobilemanager.autostart.AutoStartActivity")),
|
new Intent().setComponent(new ComponentName("com.coloros.safecenter",
|
||||||
new Intent().setComponent(new ComponentName("com.asus.mobilemanager", "com.asus.mobilemanager.entry.FunctionActivity")).setData(android.net.Uri.parse("mobilemanager://function/entry/AutoStart")),
|
"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().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(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.iqoo.secure/.MainActivity")),
|
||||||
new Intent().setComponent(ComponentName.unflattenFromString("com.meizu.safe/.permission.SmartBGActivity")),
|
new Intent()
|
||||||
new Intent().setComponent(new ComponentName("com.yulong.android.coolsafe", ".ui.activity.autorun.AutoRunListActivity")),
|
.setComponent(ComponentName.unflattenFromString("com.meizu.safe/.permission.SmartBGActivity")),
|
||||||
new Intent().setComponent(new ComponentName("cn.nubia.security2", "cn.nubia.security.appmanage.selfstart.ui.SelfStartActivity")),
|
new Intent().setComponent(
|
||||||
new Intent().setComponent(new ComponentName("com.zui.safecenter", "com.lenovo.safecenter.MainTab.LeSafeMainActivity"))
|
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")));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -29,12 +29,11 @@ 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');
|
||||||
};
|
};
|
||||||
@ -48,12 +47,11 @@ 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');
|
||||||
};
|
};
|
||||||
@ -68,8 +66,7 @@ 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 {
|
||||||
@ -82,8 +79,7 @@ exports.setEnabled = function (enable)
|
|||||||
*
|
*
|
||||||
* @return [ Object ]
|
* @return [ Object ]
|
||||||
*/
|
*/
|
||||||
exports.getDefaults = function()
|
exports.getDefaults = function () {
|
||||||
{
|
|
||||||
return this._defaults;
|
return this._defaults;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -92,8 +88,7 @@ exports.getDefaults = function()
|
|||||||
*
|
*
|
||||||
* @return [ Object ]
|
* @return [ Object ]
|
||||||
*/
|
*/
|
||||||
exports.getSettings = function()
|
exports.getSettings = function () {
|
||||||
{
|
|
||||||
return this._settings || {};
|
return this._settings || {};
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -104,20 +99,16 @@ 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]);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -130,16 +121,14 @@ 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;
|
||||||
}
|
}
|
||||||
@ -156,10 +145,8 @@ 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', []);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -169,10 +156,8 @@ 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', []);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -183,10 +168,8 @@ 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', []);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -197,18 +180,34 @@ 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.
|
||||||
@ -218,10 +217,8 @@ exports.isIgnoringBatteryOptimizations = function(callback)
|
|||||||
*
|
*
|
||||||
* @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]);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -231,10 +228,8 @@ 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', []);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -244,10 +239,8 @@ 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', []);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -257,7 +250,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', []);
|
||||||
}
|
}
|
||||||
@ -268,10 +261,8 @@ 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', []);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -282,9 +273,8 @@ 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);
|
||||||
};
|
};
|
||||||
@ -296,14 +286,11 @@ 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);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -313,10 +300,8 @@ 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', []);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -326,10 +311,8 @@ 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', []);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -339,8 +322,7 @@ exports.unlock = function()
|
|||||||
*
|
*
|
||||||
* @return [ Boolean ]
|
* @return [ Boolean ]
|
||||||
*/
|
*/
|
||||||
exports.isEnabled = function()
|
exports.isEnabled = function () {
|
||||||
{
|
|
||||||
return this._isEnabled !== false;
|
return this._isEnabled !== false;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -349,8 +331,7 @@ exports.isEnabled = function()
|
|||||||
*
|
*
|
||||||
* @return [ Boolean ]
|
* @return [ Boolean ]
|
||||||
*/
|
*/
|
||||||
exports.isActive = function()
|
exports.isActive = function () {
|
||||||
{
|
|
||||||
return this._isActive !== false;
|
return this._isActive !== false;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -364,16 +345,14 @@ 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];
|
||||||
|
|
||||||
@ -390,13 +369,11 @@ 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] = [];
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -413,19 +390,16 @@ 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;
|
||||||
}
|
}
|
||||||
@ -481,12 +455,9 @@ 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) {
|
||||||
for (var key in toMergeIn)
|
if (!options.hasOwnProperty(key)) {
|
||||||
{
|
|
||||||
if (!options.hasOwnProperty(key))
|
|
||||||
{
|
|
||||||
options[key] = toMergeIn[key];
|
options[key] = toMergeIn[key];
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -505,8 +476,7 @@ 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;
|
||||||
|
|
||||||
@ -524,13 +494,11 @@ 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;
|
||||||
}
|
}
|
||||||
@ -539,23 +507,19 @@ 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');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user