Android 12:SDK(31) 无法使用 intents 启动 activity
Android 12: SDK(31) unable to launch activity using intents
这是代码-
if (Build.VERSION.SDK_INT >= 31) {
Intent intent=new Intent(launcher.this,MainActivity.class);
startActivity(intent);
finish();
}
我收到这个错误-
控制台错误-
针对 S+(版本 31 及更高版本)要求在创建 PendingIntent 时指定 FLAG_IMMUTABLE 或 FLAG_MUTABLE 之一。
强烈考虑使用 FLAG_IMMUTABLE,仅当某些功能依赖于可变的 PendingIntent 时才使用 FLAG_MUTABLE,例如如果它需要与内联回复或气泡一起使用。
在 android.app.PendingIntent.checkFlags(PendingIntent.java:375)
未决意图可变性标志错误不一定是堆栈跟踪被抛出的地方(根据经验),尝试搜索您的任何代码使用未设置可变性标志的未决意图的项目。
只需将此库添加到您的 gradle...
implementation 'androidx.work:work-runtime-ktx:2.7.0-alpha05'
为我工作...
这是代码-
if (Build.VERSION.SDK_INT >= 31) {
Intent intent=new Intent(launcher.this,MainActivity.class);
startActivity(intent);
finish();
}
我收到这个错误- 控制台错误-
针对 S+(版本 31 及更高版本)要求在创建 PendingIntent 时指定 FLAG_IMMUTABLE 或 FLAG_MUTABLE 之一。 强烈考虑使用 FLAG_IMMUTABLE,仅当某些功能依赖于可变的 PendingIntent 时才使用 FLAG_MUTABLE,例如如果它需要与内联回复或气泡一起使用。 在 android.app.PendingIntent.checkFlags(PendingIntent.java:375)
未决意图可变性标志错误不一定是堆栈跟踪被抛出的地方(根据经验),尝试搜索您的任何代码使用未设置可变性标志的未决意图的项目。
只需将此库添加到您的 gradle...
implementation 'androidx.work:work-runtime-ktx:2.7.0-alpha05'
为我工作...