我是靠谱客的博主 包容水池,最近开发中收集的这篇文章主要介绍Caused by: java.lang.IllegalStateException: Not allowed to start service Intent,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Caused by: java.lang.IllegalStateException: Not allowed to start service Intent { cmp=package/xxx.xxxService }: app is in background uid UidRecord


Android 8.0(+)不允许在后台启动/创建Service,直接调用context.startService(intent)会宕机。

临时解决办法:

将编译版本和目标版本降级到25,就可以避免因为8.0(26)不允许APP在后台启动Service而宕机。因为系统版本向后兼容。

根本解决办法:
1、SDK26 启动Service的方法:context.startForegroundService(context, Service.class);
2、SDK26 Service启动时,即在onCreate方法中,context.startForeground(id, new Notification());

最后

以上就是包容水池为你收集整理的Caused by: java.lang.IllegalStateException: Not allowed to start service Intent的全部内容,希望文章能够帮你解决Caused by: java.lang.IllegalStateException: Not allowed to start service Intent所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(52)

评论列表共有 0 条评论

立即
投稿
返回
顶部