在我的应用程序中,背景模式在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();
});
});
})
}