后台模式在android 8.0中不起作用

时间:2019-03-27 11:40:50

标签: ionic-framework ionic3 cordova-plugins background-mode

在我的应用程序中,背景模式在android os 7.0中工作正常,但在android 8.0中不工作 当应用程序在后台运行时,会显示警告该应用程序已停止。

这是我的代码


  startTracking() {

    this.platform.ready().then(() => {


      this.backgroundMode.enable();

      this.backgroundMode.on('activate').subscribe(() => {
        this.backgroundMode.disableWebViewOptimizations()
        console.log("backgroundmode", this.backgroundMode.isEnabled())
        console.log("backgroundmode", this.backgroundMode.isActive())
        this.backgroundMode.excludeFromTaskList();


        this.observableVar = Observable.interval(20000).subscribe(()=>{

         this.function1();

        });


      });

    })

  }

0 个答案:

没有答案