Skip to content Skip to sidebar Skip to footer

Google Play Console - Crash Report: Java.lang.runtimeexception

I received some crash reports from users of one of my apps in the Google Play Store. This is the stack that I find the play store: java.lang.RuntimeException: at android.app.Act

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.

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"