diff --git a/.travis.yml b/.travis.yml
index 6dfbed4..0b3d888 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -34,6 +34,9 @@ node_js:
notifications:
email: false
+matrix:
+ fast_finish: true
+
before_install:
- xcrun simctl delete 79C525D3-2383-4201-AC3A-81810F9F4E03
@@ -42,20 +45,22 @@ install:
- npm install -g cordova
- brew install gradle
- brew install android-sdk
-- ( sleep 5 && while [ 1 ]; do sleep 1; echo y; done ) | android update sdk -a -u -t "tools,platform-tools,build-tools-25.0.2,android-16"
+- ( sleep 5 && while [ 1 ]; do sleep 1; echo y; done ) | android update sdk -a -u -t "tools,platform-tools,build-tools-25.0.2,android-25,extra-android-m2repository"
before_script:
- cordova create myApp org.apache.cordova.myApp myApp
- cd myApp
-- cordova platform add ios@latest android@latest
+- sed -i -r 's:\(:' config.xml
+- cordova platform add android@latest browser@latest ios@latest
- cordova plugin add cordova-plugin-background-mode --searchpath $TRAVIS_BUILD_DIR
- cordova platform ls
- cordova plugin ls
script:
-- cordova build ios
- cordova build android
-- cordova plugin add cordova-plugin-wkwebview-engine
+- cordova build browser
+- cordova build ios
- cordova plugin add cordova-plugin-crosswalk-webview
-- cordova build ios
+- cordova plugin add cordova-plugin-wkwebview-engine
- cordova build android
+- cordova build ios
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 859205f..3b60cde 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,8 @@
## ChangeLog
#### Version 0.7.0 (not yet released)
- __Features__
- - Support for Amazon FireOS
+ - Support for tAmazon FireOS
+ - Support for the browser platform
- Ability to configure icon and color on Android
- Allow app to move to foreground on Android
- Allow app to move to background on Android
diff --git a/README.md b/README.md
index 188883a..2f52b0f 100644
--- a/README.md
+++ b/README.md
@@ -18,9 +18,9 @@ Use the plugin by your own risk!
## Supported Platforms
+- __Android/Amazon FireOS__
+- __Browser__
- __iOS__
-- __Android__
-- __Amazon FireOS__
- __Windows__ _(see #222)_
diff --git a/plugin.xml b/plugin.xml
index 9b305a4..422f3e5 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -105,4 +105,17 @@
-->
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/browser/BackgroundModeProxy.js b/src/browser/BackgroundModeProxy.js
new file mode 100644
index 0000000..5ba7880
--- /dev/null
+++ b/src/browser/BackgroundModeProxy.js
@@ -0,0 +1,49 @@
+/*
+ Copyright 2013-2017 appPlant GmbH
+
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+ */
+
+/**
+ * Activates the background mode. When activated the application
+ * will be prevented from going to sleep while in background
+ * for the next time.
+ *
+ * @param [ Function ] success The success callback to use.
+ * @param [ Function ] error The error callback to use.
+ *
+ * @return [ Void ]
+ */
+exports.enable = function (success, error) {
+ success();
+};
+
+/**
+ * Deactivates the background mode. When deactivated the application
+ * will not stay awake while in background.
+ *
+ * @param [ Function ] success The success callback to use.
+ * @param [ Function ] error The error callback to use.
+ *
+ * @return [ Void ]
+ */
+exports.disable = function (success, error) {
+ success();
+};
+
+cordova.commandProxy.add('BackgroundMode', exports);
diff --git a/src/ios/APPBackgroundMode.h b/src/ios/APPBackgroundMode.h
index 54da95c..e7ed1e5 100644
--- a/src/ios/APPBackgroundMode.h
+++ b/src/ios/APPBackgroundMode.h
@@ -22,7 +22,7 @@
#import
#import
-@interface APPBackgroundMode : CDVPlugin {
+@interface APPBackgroundMode : CDVPlugin {
AVAudioPlayer* audioPlayer;
BOOL enabled;
}
diff --git a/www/background-mode.js b/www/background-mode.js
index d6c3b28..1640481 100644
--- a/www/background-mode.js
+++ b/www/background-mode.js
@@ -31,6 +31,8 @@ var exec = require('cordova/exec'),
* Activates the background mode. When activated the application
* will be prevented from going to sleep while in background
* for the next time.
+ *
+ * @return [ Void ]
*/
exports.enable = function () {
if (this.isEnabled())
@@ -47,6 +49,8 @@ exports.enable = function () {
/**
* Deactivates the background mode. When deactivated the application
* will not stay awake while in background.
+ *
+ * @return [ Void ]
*/
exports.disable = function () {
if (!this.isEnabled())
@@ -78,17 +82,18 @@ exports.setEnabled = function (enable) {
/**
* List of all available options with their default value.
*
- * @return {Object}
+ * @return [ Object ]
*/
exports.getDefaults = function () {
return this._defaults;
};
/**
- * Overwrite default settings
+ * Overwrite the default settings.
*
- * @param {Object} overrides
- * Dict of options which shall be overridden
+ * @param [ Object ] overrides Dict of options to be overridden.
+ *
+ * @return [ Void ]
*/
exports.setDefaults = function (overrides) {
var defaults = this.getDefaults();
@@ -108,8 +113,9 @@ exports.setDefaults = function (overrides) {
* Configures the notification settings for Android.
* Will be merged with the defaults.
*
- * @param {Object} options
- * Dict with key/value pairs
+ * @param [ Object ] overrides Dict of options to be overridden.
+ *
+ * @return [ Void ]
*/
exports.configure = function (options) {
var settings = this.mergeWithDefaults(options);
@@ -121,6 +127,8 @@ exports.configure = function (options) {
/**
* Enable GPS-tracking in background (Android).
+ *
+ * @return [ Void ]
*/
exports.disableWebViewOptimizations = function () {
if (this._isAndroid) {
@@ -163,7 +171,7 @@ exports.overrideBackButton = function () {
/**
* If the mode is enabled or disabled.
*
- * @return {Boolean}
+ * @return [ Boolean ]
*/
exports.isEnabled = function () {
return this._isEnabled !== false;
@@ -172,7 +180,7 @@ exports.isEnabled = function () {
/**
* If the mode is active.
*
- * @return {Boolean}
+ * @return [ Boolean ]
*/
exports.isActive = function () {
return this._isActive !== false;
@@ -189,7 +197,7 @@ exports._listener = {};
* Fire event with given arguments.
*
* @param [ String ] event The event's name.
- * @param {args*} The callback's arguments.
+ * @param [ Array