Background execution not allowed. Android O pendingintent

一世执手 提交于 2019-11-30 19:07:42

I resolved it by adding a foreground service:

Intent test = new Intent(this, NotificationService.class);
startForegroundService(test);

This will show a notification telling that my app is running on the foreground.

And by adding this in my service's oncreate:

startForeground(100, new NotificationCompat.Builder(this).build());
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!