如何使用cordova在启动设备中启动我的应用程序?

时间:2017-05-19 21:31:28

标签: android cordova ionic-framework ionic2 startup

我想在启动时启动应用程序,我该怎么做?

我了解https://github.com/olaferlandsen/cordova-plugin-autostart 但它不能很好地运作

由于

1 个答案:

答案 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