Burst of app crashes immediately after publishing to Google Play

后端 未结 2 1817
你的背包
你的背包 2020-12-29 01:50

Immediately after publishing a new version of an application on Google Play, I get a burst of new crashes from an unknown device called \"unknown Full Android on Emulator\".

相关标签:
2条回答
  • 2020-12-29 01:59

    I also found similar issue reported on Crashlytics with a Rooted Emulator , and it's NullPointer Exception in onCreate() of an activity when I try to access a value got from getIntent(). But I always put this value in previous activity . So I guess it's launch by monkey or "adb am start" even the activity is exported = "false"

    0 讨论(0)
  • 2020-12-29 02:11

    Since soon after publishing a new version I see crashes almost only from this device, I'm guessing it's a Google Play new app publishing flow, where they monkey test your app.

    I'm seeing crashes from Debug activities that can't be opened in the UI, but can be accessed via a direct intent, so I'm also guessing this monkey test goes over the manifest, launches random activities directly, and plays with them.

    See: http://developer.android.com/tools/help/monkey.html

    0 讨论(0)
提交回复
热议问题