ANR in com.google.android.googlequicksearchbox:search

Viewed 2439

I am having problems deploying an app onto the Google Play Store. The exception that is getting returned is such:

05-10 14:14:31.383: E/ActivityManager(1572): ANR in com.google.android.googlequicksearchbox:search
05-10 14:14:31.383: E/ActivityManager(1572): PID: 16601
05-10 14:14:31.383: E/ActivityManager(1572): Reason: Broadcast of Intent { act=android.accounts.LOGIN_ACCOUNTS_CHANGED flg=0x5000010 cmp=com.google.android.googlequicksearchbox/com.google.apps.tiktok.account.data.device.DeviceAccountsChangedReceiver_Receiver }

https://pastebin.com/ApYNL7KC

Any advice would be greatly appreciated!

2 Answers

While I could not find the cause of this error yet, I could get rid of it for now.

There were two clues of where the error can be,

  1. Error message/log has the phrase "Broadcast of Intent"
  2. By looking at the recording provided at launch report error details. The crash happened when App was being launched by other intent (than the main)

Video in Error details here

To get rid of the error I removed this deep link for now. (Settings>Deep Link 1).The next report does not have the crash.

Remove Deep Link

You see this as error in Google automated tests. Based on the description this is something that won't happen in real life to real users.

Google Play console had and still has problems in testing when it opens WebView and shows some crashes that don't exist (and can't exist unless WebView crashes itself).

Related