我想在启动时启动应用程序,我该怎么做?
我了解 https://github.com/olaferlandsen/cordova-plugin-autostart但它效果不佳
谢谢
您可以使用cordova-plugin-autostart来自动启动您的应用程序。
循序渐进:
从 CLI 安装最新版本的插件:
cordova plugin add cordova-plugin-autostart@latest
或从主分支:
cordova plugin add https://github.com/ToniKorin/cordova-plugin-autostart.git
启用自动启动:
cordova.plugins.autoStart.enable();
示例 Ionic2:
文件: 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();