Android13适配时报下面错误:
java.lang.IllegalArgumentException: android: Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent.
02-26 20:00:47.055 27821 27821 I System : java.lang.IllegalArgumentException: android: Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent.
02-26 20:00:47.055 27821 27821 I System : Strongly consider using FLAG_IMMUTABLE, only use FLAG_MUTABLE if some functionality depends on the PendingIntent being mutable, e.g. if it needs to be used with inline replies or bubbles.
02-26 20:00:47.055 27821 27821 I System : at android.app.PendingIntent.checkFlags(PendingIntent.java:404)
02-26 20:00:47.055 27821 27821 I System : at android.app.PendingIntent.getBroadcastAsUser(PendingIntent.java:674)
02-26 20:00:47.055 27821 27821 I System : at android.app.PendingIntent.getBroadcast(PendingIntent.java:661)
02-26 20:00:47.055 27821 27821 I System : at com.XX.server.ntp.SunmiNetworkTimeUpdateService.<init>(SunmiNetworkTimeUpdateService.java:148)
02-26 20:00:47.055 27821 27821 I System : at com.XX.server.SunmiSystemServer.<init>(SunmiSystemServer.java:55)
02-26 20:00:47.055 27821 27821 I System : at com.android.server.SystemServer.startOtherServices(SystemServer.java:2414)
02-26 20:00:47.055 27821 27821 I System : at com.android.server.SystemServer.run(SystemServer.java:944)
02-26 20:00:47.055 27821 27821 I System : at com.android.server.SystemServer.main(SystemServer.java:654)
02-26 20:00:47.055 27821 27821 I System : at java.lang.reflect.Method.invoke(Native Method)
02-26 20:00:47.055 27821 27821 I System : at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:548)
02-26 20:00:47.055 27821 27821 I System : at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:920)
02-26 20:00:47.055 27821 27821 W SystemServer: ***********************************************
02-26 20:00:47.055 27821 27821 E SystemServer: BOOT FAILURE starting SunmiSystemServer
02-26 20:00:47.055 27821 27821 E SystemServer: java.lang.IllegalArgumentException: android: Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent.
02-26 20:00:47.055 27821 27821 E SystemServer: Strongly consider using FLAG_IMMUTABLE, only use FLAG_MUTABLE if some functionality depends on the PendingIntent being mutable, e.g. if it needs to be used with inline replies or bubbles.
02-26 20:00:47.055 27821 27821 E SystemServer: at android.app.PendingIntent.checkFlags(PendingIntent.java:404)
02-26 20:00:47.055 27821 27821 E SystemServer: at android.app.PendingIntent.getBroadcastAsUser(PendingIntent.java:674)
02-26 20:00:47.055 27821 27821 E SystemServer: at android.app.PendingIntent.getBroadcast(PendingIntent.java:661)
02-26 20:00:47.055 27821 27821 E SystemServer: at com.XX.server.ntp.SunmiNetworkTimeUpdateService.<init>(SunmiNetworkTimeUpdateService.java:148)
02-26 20:00:47.055 27821 27821 E SystemServer: at com.XX.server.SunmiSystemServer.<init>(SunmiSystemServer.java:55)
02-26 20:00:47.055 27821 27821 E SystemServer: at com.android.server.SystemServer.startOtherServices(SystemServer.java:2414)
02-26 20:00:47.055 27821 27821 E SystemServer: at com.android.server.SystemServer.run(SystemServer.java:944)
02-26 20:00:47.055 27821 27821 E SystemServer: at com.android.server.SystemServer.main(SystemServer.java:654)
02-26 20:00:47.055 27821 27821 E SystemServer: at java.lang.reflect.Method.invoke(Native Method)
02-26 20:00:47.055 27821 27821 E SystemServer: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:548)
02-26 20:00:47.055 27821 27821 E SystemServer: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:920)
02-26 20:00:47.056 27821 27821 D SystemServerTiming: StartPrintManager
修改方法:
148 if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.S) {
149 mPendingPollIntent = PendingIntent.getBroadcast(mContext, POLL_REQUEST, pollIntent, PendingIntent.FLAG_IMMUTABLE);
150 }else{
151 mPendingPollIntent = PendingIntent.getBroadcast(mContext, POLL_REQUEST, pollIntent, 0);
152 }
参考:文章来源:https://www.toymoban.com/news/detail-503806.html
App和SDK开发必看 | 个推分享Android12适配指南 - 知乎 (zhihu.com)文章来源地址https://www.toymoban.com/news/detail-503806.html
到了这里,关于【已解决】Android12以上PendingIntent需要强制增加FLAG_IMMUTABLE或FLAG_MUTABLE的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!