0
我想在啓動時啓動應用程序,我該怎麼做?如何在cordova啓動我的應用程序啓動設備?
我瞭解https://github.com/olaferlandsen/cordova-plugin-autostart 但它不工作以及
感謝
我想在啓動時啓動應用程序,我該怎麼做?如何在cordova啓動我的應用程序啓動設備?
我瞭解https://github.com/olaferlandsen/cordova-plugin-autostart 但它不工作以及
感謝
您可以使用cordova-plugin-autostart自動啓動你的應用程序。
一步一步:
從CLI安裝插件:
cordova plugin rm cordova-plugin-autostart
啓用AUTOSTART:
cordova.plugins.autoStart.enable();
例Ionic2:
FILE:app.component.ts
declare let cordova : any;
export class MyApp {
rootPage:any = HomePage;
constructor(platform: Platform, statusBar: StatusBar, splashScreen: SplashScreen) {
platform.ready().then(() => {
cordova.plugins.autoStart.enable();