Feedback app stopped working? (Outlook Ringtone Crash)

a1291762

Senior Member
Nov 20, 2012
561
248
73
yasmar.net
Hi,

I found a crash in the system and tried to report it via the Feedback app. The report could not be uploaded. I cleared data on the feedback app and now I can't login.

Does anyone know if this is a temporary thing or if the Feedback app has been disabled for us?

The crash may be relevant to some people here so here it is...

Outlook sets a default sound for notifications. But you can't change this when running Android 10 because of a crash in the RingtonePicker (failing to parse the URI). This worked in Android 9, and a fix is already made, but I guess because Xiaomi only pulls in security fixes, we haven't got this.

09-11 14:28:27.658 17944 17944 E AndroidRuntime: Caused by: java.lang.NumberFormatException: For input string: "calendar_reminder"
09-11 14:28:27.658 17944 17944 E AndroidRuntime:******* at java.lang.Long.parseLong(Long.java:594)
09-11 14:28:27.658 17944 17944 E AndroidRuntime:******* at java.lang.Long.parseLong(Long.java:636)
09-11 14:28:27.658 17944 17944 E AndroidRuntime:******* at android.content.ContentUris.parseId(ContentUris.java:89)
09-11 14:28:27.658 17944 17944 E AndroidRuntime:******* at android.media.RingtoneManager.getRingtonePosition(RingtoneManager.java:516)

Needs this commit from platform/frameworks/base (not in android10-release but in android10-sidebranch)

commit fb3973a917d9e6a1a81928296fa4cce034b76b75
Author: Scott Warner <[email protected]>
Date: Fri Jan 31 10:44:32 2020 -0500
RingtoneManager: Don't crash if the ringtone doesn't have a numerical ID


If you've got root, you can edit /data/system/notification_policy.xml. I changed the sound property to this (which is valid on my phone). The main thing is that this URI ends in a number (compared to the Outlook default).

<channel id="v2.EVENT_REMINDER:account_32768" name="Event reminders" importance="3" sound="content://media/external/audio/media/50008?title=ping&canonical=1" ...

After editing, I had to reboot the phone because something was caching the file and opening the settings would overwrite my change.
 

Aadil Gillani

Senior Member
Nov 20, 2015
111
18
18
Hi,

I found a crash in the system and tried to report it via the Feedback app. The report could not be uploaded. I cleared data on the feedback app and now I can't login.

Does anyone know if this is a temporary thing or if the Feedback app has been disabled for us?

The crash may be relevant to some people here so here it is...

Outlook sets a default sound for notifications. But you can't change this when running Android 10 because of a crash in the RingtonePicker (failing to parse the URI). This worked in Android 9, and a fix is already made, but I guess because Xiaomi only pulls in security fixes, we haven't got this.

09-11 14:28:27.658 17944 17944 E AndroidRuntime: Caused by: java.lang.NumberFormatException: For input string: "calendar_reminder"
09-11 14:28:27.658 17944 17944 E AndroidRuntime:******* at java.lang.Long.parseLong(Long.java:594)
09-11 14:28:27.658 17944 17944 E AndroidRuntime:******* at java.lang.Long.parseLong(Long.java:636)
09-11 14:28:27.658 17944 17944 E AndroidRuntime:******* at android.content.ContentUris.parseId(ContentUris.java:89)
09-11 14:28:27.658 17944 17944 E AndroidRuntime:******* at android.media.RingtoneManager.getRingtonePosition(RingtoneManager.java:516)

Needs this commit from platform/frameworks/base (not in android10-release but in android10-sidebranch)

commit fb3973a917d9e6a1a81928296fa4cce034b76b75
Author: Scott Warner <[email protected]>
Date: Fri Jan 31 10:44:32 2020 -0500
RingtoneManager: Don't crash if the ringtone doesn't have a numerical ID


If you've got root, you can edit /data/system/notification_policy.xml. I changed the sound property to this (which is valid on my phone). The main thing is that this URI ends in a number (compared to the Outlook default).

<channel id="v2.EVENT_REMINDER:account_32768" name="Event reminders" importance="3" sound="content://media/external/audio/media/50008?title=ping&canonical=1" ...

After editing, I had to reboot the phone because something was caching the file and opening the settings would overwrite my change.
Facing same issue ?