mirror of
https://bitbucket.org/TheBosZ/cordova-plugin-run-in-background
synced 2024-11-22 07:14:54 +00:00
Disabled by default
This commit is contained in:
parent
01202bb250
commit
ffd81e00c2
@ -41,7 +41,7 @@ public class BackgroundMode extends CordovaPlugin {
|
|||||||
private boolean inBackground = false;
|
private boolean inBackground = false;
|
||||||
|
|
||||||
// Flag indicates if the plugin is enabled or disabled
|
// Flag indicates if the plugin is enabled or disabled
|
||||||
private boolean isDisabled = false;
|
private boolean isDisabled = true;
|
||||||
|
|
||||||
// Flag indicates if the service is bind
|
// Flag indicates if the service is bind
|
||||||
private boolean isBind = false;
|
private boolean isBind = false;
|
||||||
@ -61,7 +61,6 @@ public class BackgroundMode extends CordovaPlugin {
|
|||||||
@Override
|
@Override
|
||||||
public void onServiceDisconnected(ComponentName name) {
|
public void onServiceDisconnected(ComponentName name) {
|
||||||
Log.w("BackgroundMode", "Service disrupted");
|
Log.w("BackgroundMode", "Service disrupted");
|
||||||
//stopService();
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
*/
|
*/
|
||||||
- (void) pluginInitialize
|
- (void) pluginInitialize
|
||||||
{
|
{
|
||||||
[self enable:NULL];
|
[self disable:NULL];
|
||||||
[self configureAudioPlayer];
|
[self configureAudioPlayer];
|
||||||
[self configureAudioSession];
|
[self configureAudioSession];
|
||||||
}
|
}
|
||||||
@ -61,6 +61,7 @@
|
|||||||
object:nil];
|
object:nil];
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
[self enable:NULL];
|
||||||
[self keepAwake];
|
[self keepAwake];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user