gpt4 book ai didi

Android API 31 - WorkManager - PendingIntent - 标记 IMMUTABLE 错误

转载 作者:行者123 更新时间:2023-12-04 13:07:52 28 4
gpt4 key购买 nike

异常(exception) :
定位 S+(版本 31 及更高版本)要求在创建 PendingIntent 时指定 FLAG_IMMUTABLE 或 FLAG_MUTABLE 之一
导致异常的代码 :
WorkManager.getInstance(context).createCancelPendingIntent(id)
build.gradle 选项 :
compileSdkVersion 31
buildToolsVersion '30.0.3'(版本 31.0.0 给出错误:安装的构建工具版本 31.0.0 已损坏。使用 SDK 管理器删除并再次安装)。
模拟器 :
API 31(使用 API S 一切正常)
依赖 :
//工作管理器
实现“androidx.work:work-runtime-ktx:2.7.0-alpha05”
实现 'com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava'
我认为问题可能出在 的这种方法中。 BuildCompat.java :

/**
* Checks if the device is running on a pre-release version of Android S or a release version of
* Android S or newer.
* <p>
* <strong>Note:</strong> When Android S is finalized for release, this method will be
* deprecated and all calls should be replaced with {@code Build.VERSION.SDK_INT >=
* Build.VERSION_CODES.S}.
*
* @return {@code true} if S APIs are available for use, {@code false} otherwise
*/
@ChecksSdkIntAtLeast(codename = "S")
public static boolean isAtLeastS() {
return VERSION.CODENAME.equals("S");
}
那是因为当我在模拟器上运行应用程序并记录我得到的版本名称时:
版本名称:REL

最佳答案

基于 this bug ,似乎解决方法是添加对 androidx.core:core:1.7.0-alpha01 的依赖其中包括对 BuildCompat.isAtLeastS() 的修复.

It looks like what you are missing is a dependency on the latest version of android.core. That includes this change which has an important bug fix for BuildCompat.isAtLeastS().

关于Android API 31 - WorkManager - PendingIntent - 标记 IMMUTABLE 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68546589/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com