RemoteServiceException when notification style is applied on Xiaomi phones with Android 11
Asked Answered
W

2

12

Without any visible reason, Xiaomi phones with Android 11 started to appear in crashlytics logs. Something happens with notifications. We don't do anything too specific and everything works fine on other Android 11 devices. I wasn't able to reproduce this crash on the affected device. What could be the reason?

First crashes started to appear at the beginning of December, and the amount rapidly grow through January from 10 per day to 100+

crash:

Fatal Exception: android.app.RemoteServiceException
Bad notification(tag=null, id=) posted from package my.application, crashing app(uid=, pid=): Couldn't inflate contentViewsjava.lang.ClassCastException: android.app.Notification$MediaStyle cannot be cast to android.app.Notification$MessagingStyle

Notification style:

    final MediaStyle style = new MediaStyle()
            .setMediaSession(token)
            .setShowActionsInCompactView(PREV_POSITION, PLAY_PAUSE_POSITION, NEXT_POSITION)
            .setCancelButtonIntent(STOP.notificationPending(mContext))
            .setShowCancelButton(true);
    setStyle(style);
Wakerobin answered 12/2, 2021 at 13:13 Comment(4)
same Fatal Exception: android.app.RemoteServiceException: Bad notification(tag=null, id=100) posted from package in.shadowfax.gandalf, crashing app(uid=XX, pid=XX): Couldn't inflate contentViewsjava.lang.ClassCastException: android.app.Notification$BigTextStyle cannot be cast to android.app.Notification$MessagingStyleExanimate
We're not even posting any notification with MessagingStyle. Are you using Freshchat SDK? We recently deployed that, could be that they're using MessagingStyle notificationsExanimate
No, we don't use it.Wakerobin
I have the same problem, starting from JanuaryAquatic
B
2

Same problem here. I think this is a bug from MIUI instead of the bug from the app. MIUI changes the notification part a lot for their own look and feel. It may be fixed in future MIUI updates.

Broomstick answered 22/2, 2021 at 18:0 Comment(0)
W
0

From xiaomi:

the crash position is found and i will push R&D to release new version ASAP

And looks like it has been released

enter image description here

Wakerobin answered 20/5, 2021 at 6:53 Comment(2)
Hi, what is the source of the quote "from Xiaomi" ? I have another issue with some Xiaomi devices. Many thanksPederasty
We asked them about this crash directly and got this answer. We don't have it in the crash reports any moreWakerobin

© 2022 - 2024 — McMap. All rights reserved.