-
Notifications
You must be signed in to change notification settings - Fork 9
Description
Issue:
The app crash is a java.lang.RuntimeException that occurred deep within the Android framework's ActivityThread, specifically during the performLaunchActivity method. This method is responsible for instantiating an Activity, calling its onCreate method, and preparing it for display. The absence of specific application code in the provided stack trace indicates that an unhandled exception likely occurred very early in the Activity's lifecycle, such as within its onCreate method
Trace:
Exception java.lang.RuntimeException:
at android.app.ActivityThread.performLaunchActivity (ActivityThread.java:4372)
at android.app.ActivityThread.handleLaunchActivity (ActivityThread.java:4569)
at android.app.servertransaction.LaunchActivityItem.execute (LaunchActivityItem.java:126)
at android.app.servertransaction.TransactionExecutor.executeNonLifecycleItem (TransactionExecutor.java:179)
at android.app.servertransaction.TransactionExecutor.executeTransactionItems (TransactionExecutor.java:114)
at android.app.servertransaction.TransactionExecutor.execute (TransactionExecutor.java:86)
at android.app.ActivityThread$H.handleMessage (ActivityThread.java:2902)
at android.os.Handler.dispatchMessage (Handler.java:107)
at android.os.Looper.loopOnce (Looper.java:282)
at android.os.Looper.loop (Looper.java:387)
at android.app.ActivityThread.main (ActivityThread.java:9500)
at java.lang.reflect.Method.invoke
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run (RuntimeInit.java:600)
at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:1005)