Allow app to move to background (Android)

This commit is contained in:
Sebastián Katzer
2017-01-03 21:45:58 +01:00
parent af5da60143
commit d012080d2b
2 changed files with 26 additions and 0 deletions

View File

@@ -99,6 +99,17 @@ exports.disableWebViewOptimizations = function () {
}
};
/**
* Move app to background (Android only).
*
* @return [ Void ]
*/
exports.moveToBackground = function () {
if (device.platform == 'Android') {
cordova.exec(null, null, 'BackgroundMode', 'background', []);
}
};
/**
* If the mode is enabled or disabled.
*