Merge pull request #885 from Red-Folder/master

[Android] Background Service - Fix for background service
This commit is contained in:
tommy-carlos williams
2012-11-26 02:05:18 -08:00
5 changed files with 13 additions and 2 deletions

View File

@@ -38,6 +38,10 @@ Add the following to AndroidManifest.xml
</intent-filter>
</receiver>
```
## Change Log ##
* 14th November 2012 - Fix for service not stopping if the app has been closed then re-opened
## Further Information ##

View File

@@ -38,6 +38,9 @@ Add the following to AndroidManifest.xml
</intent-filter>
</receiver>
```
## Change Log ##
* 14th November 2012 - Fix for service not stopping if the app has been closed then re-opened
## Further Information ##

View File

@@ -4,12 +4,16 @@ A plugin (and framework code) that allows the development and operation of an An
The example MyService Background Service will write a Hello message to the LogCat every minute. The MyService is designed as sample code.
## Versions ##
## Cordova Versions ##
Folders used for different Cordova versions:
* /1.8.1 - For use with Cordova 1.8.1
* /2.0.0 - Coming soon
* /2.0.0 - For use with Cordova 2.0.0
## Change Log ##
* 14th November 2012 - Fix for service not stopping if the app has been closed then re-opened
## Further Information ##