cordova-plugin-autostart icon indicating copy to clipboard operation
cordova-plugin-autostart copied to clipboard

This Cordova plugin will start automatically your app after the every boot or the auto-update of your application. You can enable or disable the autostart function in your app.

Results 16 cordova-plugin-autostart issues
Sort by recently updated
recently updated
newest added

I've seen this being discussed before, during January this year, but I'm wondering whether it was ever considered to support starting the app in the background. In my case the...

Not working on redmi note 4. Is that required any additional permission like WRITE_SECURE_SETTINGS WRITE_SETTINGS To allow this plugin to autostart: on Let me know about this!

i try to writing a native service,then using autostart plugin to boot it. but it no work. Would you provide a example?

Currently, `PackageReplacedReceiver` is enabled [by default](https://github.com/ToniKorin/cordova-plugin-autostart/blob/master/plugin.xml#L53). It will start the app or service when `enable` or `enableService` have been called. It would be useful to have the ability to enable...

VS2015 Cordova 6.0 `(function () { "use strict"; ``` document.addEventListener( 'deviceready', onDeviceReady.bind( this ), false ); function onDeviceReady() { cordova.plugins.autoStart.enable(); document.addEventListener( 'pause', onPause.bind( this ), false ); document.addEventListener( 'resume', onResume.bind(...