mirror of
https://bitbucket.org/TheBosZ/cordova-plugin-run-in-background
synced 2025-12-13 09:53:22 +00:00
Allow app to move to foreground (Android)
This commit is contained in:
@@ -110,6 +110,17 @@ exports.moveToBackground = function () {
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Move app to foreground when in background (Android only).
|
||||
*
|
||||
* @return [ Void ]
|
||||
*/
|
||||
exports.moveToForeground = function () {
|
||||
if (this.isActive() && device.platform == 'Android') {
|
||||
cordova.exec(null, null, 'BackgroundMode', 'foreground', []);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Override the back button on Android to go to background
|
||||
* instead of closing the app.
|
||||
|
||||
Reference in New Issue
Block a user