答案 0 :(得分:2)
您可以使用cordova-plugin-autostart自动启动应用程序。
一步一步:
从CLI安装最新版本的插件:
cordova plugin add https://github.com/ToniKorin/cordova-plugin-autostart.git
或来自主分公司:
cordova.plugins.autoStart.enable();
启用自动启动:
declare let cordova : any;
export class MyApp {
rootPage:any = HomePage;
constructor(platform: Platform, statusBar: StatusBar, splashScreen: SplashScreen) {
platform.ready().then(() => {
cordova.plugins.autoStart.enable();
示例Ionic2:
文件: app.component.ts
subproc