Google Play Console - Crash Report: Java.lang.runtimeexception
Solution 1:
The great thing about Android is it is open source. So you can investigate these issues for yourself.
In this case, let's look at the source for ActivityThread. Do a Google search for "source ActivityThread.java". For me the top result is the source code on android.googlesource.com.
Now look at the performLaunchActivity() method. It's a shame there is no message in the stack trace, but it looks like this method throws a RuntimeException when there is a problem loading the launch activity for your app. So it looks like some sort of message is coming in, your launch activity is trying to start, but throwing an exception on loading your app. Unfortunately, I can't give you much more detail than that.
- What Causes "runtimeexception: Binary Xml File Line #20: You Must Supply A Layout_height Attribute." (actionbarscherlock Is Suspected)?
- Getactivity() Call Causes Runtimeexception: Could Not Launch Intent Intent Act=android.intent.action.main
- Listview No Longer Reacts To Onclick After A Call To Setselection()
You might want to try integrating with a solution like Firebase Crashlytics which gives you more detailed tools for investigating crashes than the Play Console offers.
Post a Comment for "Google Play Console - Crash Report: Java.lang.runtimeexception"