Android 8.0:java.lang.IllegalStateException:不允许启动服务Intent

Android 8.0:java.lang.IllegalStateException:不允许启动服务Intent,第1张

概述在应用程序启动时,应用程序启动应该执行某些网络任务的服务.在针对API级别26后,我的应用程序无法在后台启动Android8.0上的服务.Causedby:java.lang.IllegalStateException:NotallowedtostartserviceIntent{cmp=my.app.tt/com.my.service}:appisinbackgr

在应用程序启动时,应用程序启动应该执行某些网络任务的服务.
在针对API级别26后,我的应用程序无法在后台启动Android 8.0上的服务.

Caused by: java.lang.IllegalStateException: Not allowed to start@H_502_8@ service Intent {@H_502_8@ cmp=my.app.tt/com.my.service@H_502_8@ }: app is in background uID UIDRecord{90372b1 u0a136 CEM IDle procs:1@H_502_8@ seq(0,0,0)}

据我所知,它涉及到:@H_502_8@Background execution limits

The startService() method Now throws an IllegalStateException if an@H_502_8@ app targeting AndroID 8.0 trIEs to use that method in a situation when@H_502_8@ it isn’t permitted to create background services.

“在不允许的情况下” – 它实际意味着什么?以及如何解决它.我不想把我的服务设置为“前景”

解决方法:

允许的情况是临时白名单,其中后台服务的行为与AndroID O之前相同.

Under certain circumstances, a background app is placed on a temporary whiteList for several minutes. While an app is on the whiteList, it can launch services without limitation, and its background services are permitted to run. An app is placed on the whiteList when it handles a task that’s visible to the user, such as:

Handling a high-priority Firebase Cloud Messaging (FCM) message.Receiving a broadcast, such as an SMS/MMS message.Executing a PendingIntent from a notification.Starting a VpnService before the VPN app promotes itself to the foreground.

资料来源:https://developer.android.com/about/versions/oreo/background.html

换句话说,如果您的后台服务不符合白名单要求,则必须使用新的JobScheduler.它与后台服务基本相同,但它会定期调用,而不是连续在后台运行.

如果您使用的是IntentService,则可以更改为JobIntentService.见@ kosev的answer below.

总结

以上是内存溢出为你收集整理的Android 8.0:java.lang.IllegalStateException:不允许启动服务Intent全部内容,希望文章能够帮你解决Android 8.0:java.lang.IllegalStateException:不允许启动服务Intent所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1104392.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存