25

问题

定位 S+(版本 31 及更高版本)要求在创建 PendingIntent 时指定 FLAG_IMMUTABLE 或 FLAG_MUTABLE 之一。我在将目标 SDK 更新到 31 后得到它。错误总是出现在 AlarmPingSender 之后。但我不知道任何使用 AlarmPingSender 的类。


2021-10-31 10:43:04.990 17031-17341/com.app.mobile D/AlarmPingSender: Register alarmreceiver to MqttServiceMqttService.pingSender.com.app.mobile-2e24ccbde048f2e91635651784
2021-10-31 10:43:04.993 17031-17341/com.app.mobile E/AndroidRuntime: FATAL EXCEPTION: MQTT Rec: com.app.mobile-2e24ccbde048f2e91635651784
    Process: com.app.mobile, PID: 17031
    java.lang.IllegalArgumentException: com.app.mobile: Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent.
    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.
        at android.app.PendingIntent.checkFlags(PendingIntent.java:375)
        at android.app.PendingIntent.getBroadcastAsUser(PendingIntent.java:645)
        at android.app.PendingIntent.getBroadcast(PendingIntent.java:632)
        at org.eclipse.paho.android.service.AlarmPingSender.start(AlarmPingSender.java:76)
        at org.eclipse.paho.client.mqttv3.internal.ClientState.connected(ClientState.java:1150)
        at org.eclipse.paho.client.mqttv3.internal.ClientState.notifyReceivedAck(ClientState.java:987)
        at org.eclipse.paho.client.mqttv3.internal.CommsReceiver.run(CommsReceiver.java:118)
        at java.lang.Thread.run(Thread.java:920)

我已经做了什么

  • 将 WorkManager 升级到 2.7.0
  • 将 AllProject 设置为强制使用 WorkManager 为 2.7.0
  • 将所有现有的 PendingIntent 更改为使用 FLAG_IMMUTABLE
  • 有旧代码仍在使用 gcm 并禁用它
  • 更新所有 Firebase 软件包(有人说是因为更高版本的分析)

使用的图书馆

  • OneSignal
  • 七星
  • 火力基地
  • 工作经理
4

7 回答 7

7

我有这个崩溃,但没有 3rd 方库。使用最新版本添加此导入将修复崩溃。

implementation 'androidx.work:work-runtime-ktx:2.7.0-beta01'
于 2022-01-11T22:42:35.550 回答
6

将以下内容添加到您的build.gradle(app)依赖项中。

dependencies {
  // For Java
  implementation 'androidx.work:work-runtime:2.7.1' 

  // For Kotlin
  implementation 'androidx.work:work-runtime-ktx:2.7.1'
}
于 2022-01-26T20:45:30.080 回答
5

可能的解决方案

将谷歌分析升级到 Firebase 分析。希望它能解决您的问题。同时升级您正在使用的所有库。

对我来说,以下解决方案可以解决问题。

添加PendingIntent.FLAG_IMMUTABLE到您的待处理意图。

这是一个例子 -

PendingIntent pendingIntent = PendingIntent.getActivity(this, alarmID, notificationIntent, PendingIntent.FLAG_IMMUTABLE);

有关更多信息,请点击此链接 - https://developer.android.com/reference/android/app/PendingIntent#FLAG_IMMUTABLE

于 2021-10-31T07:02:36.787 回答
2

经过几次尝试解决此问题后,我放弃并尝试联系 Qiscus。他们发布了新版本来处理这个 Pending Intent 行为变化。因此,如果有人使用 Qiscus 并收到此错误,您可以使用 latest 标签

https://github.com/qiscus/qiscus-sdk-android/releases/tag/1.3.35

于 2021-11-05T00:39:56.670 回答
0

这可能是库版本的问题。如果您的项目中有旧版本的库,那么您必须将其更新到最新版本。

因此,更新工作运行时和 firebase 消息库版本如下,

dependencies {
    // For Java
    implementation 'androidx.work:work-runtime:2.7.1' 
    // For Kotlin
    implementation 'androidx.work:work-runtime-ktx:2.7.1'
    implementation 'com.google.firebase:firebase-messaging:23.0.0'
    ...
}

另外,确保待处理的意图代码是这样的,

PendingIntent pendingIntent = PendingIntent.getActivity(this, alarmID, notificationIntent, PendingIntent.FLAG_IMMUTABLE);
于 2022-02-20T16:06:30.757 回答
0

除了其他人的答案我改变了:

implementation 'com.google.firebase:firebase-messaging:20.0.0'

至 :

implementation 'com.google.firebase:firebase-messaging:23.0.0'

及其现在的工作。

于 2022-02-20T12:16:06.503 回答
0

尝试添加报警权限

<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM"/>
于 2022-02-16T08:12:43.627 回答