Google 开发者控制台显示我的应用程序在过去一个月中收到了两个相同的错误,但是此
RuntimeException
并未指定错误源自的类或文件。我看不出什么具体的东西。以下是两种不同设备的错误:
三星 Galaxy S8 Active(cruiserlteatt),4096MB RAM,Android 7.0 报告第 1 个(共 2 个)
java.lang.RuntimeException:
at android.app.ActivityThread.performLaunchActivity (ActivityThread.java:2984)
at android.app.ActivityThread.handleLaunchActivity (ActivityThread.java:3045)
at android.app.ActivityThread.handleRelaunchActivity
(ActivityThread.java:4978)
at android.app.ActivityThread.-wrap21 (ActivityThread.java)
at android.app.ActivityThread$H.handleMessage (ActivityThread.java:1648)
at android.os.Handler.dispatchMessage (Handler.java:102)
at android.os.Looper.loop (Looper.java:154)
at android.app.ActivityThread.main (ActivityThread.java:6781)
at java.lang.reflect.Method.invoke (Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run
(ZygoteInit.java:1520)
at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:1410)
三星 Galaxy S7 (heroqltespr),4096MB RAM,Android 7.0 报告第 2 个(共 2 个)
java.lang.RuntimeException:
at android.app.ActivityThread.performLaunchActivity
(ActivityThread.java:2947)
at android.app.ActivityThread.handleLaunchActivity
(ActivityThread.java:3008)
at android.app.ActivityThread.handleRelaunchActivity
(ActivityThread.java:4974)
at android.app.ActivityThread.-wrap21 (ActivityThread.java)
at android.app.ActivityThread$H.handleMessage (ActivityThread.java:1656)
at android.os.Handler.dispatchMessage (Handler.java:102)
at android.os.Looper.loop (Looper.java:154)
at android.app.ActivityThread.main (ActivityThread.java:6688)
at java.lang.reflect.Method.invoke (Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run
(ZygoteInit.java:1468)
at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:1358)
什么可能导致此错误?这是唯一发生的两次,并且提供的日志不像我能够解决的其他错误那样显示 java 类或 xml 文件。
如果有人能帮助我解决这个问题,我将不胜感激, 非常感谢。
根据源代码,
ActivityThread.performLaunchActivity
中有两个地方抛出了RuntimeException
。 他们是:
} catch (Exception e) {
if (!mInstrumentation.onException(activity, e)) {
throw new RuntimeException(
"Unable to instantiate activity " + component
+ ": " + e.toString(), e);
}
}
和
} catch (Exception e) {
if (!mInstrumentation.onException(activity, e)) {
throw new RuntimeException(
"Unable to start activity " + component
+ ": " + e.toString(), e);
}
}
如您所见:
RuntimeException
提供一条消息,其中包括来自原始异常的异常消息。e
) 传递给 RuntimeException
构造函数,以便正确链接。如果没有因果异常消息(至少)和因果异常堆栈跟踪,或者完整的应用程序源代码,则几乎不可能诊断您的问题。
您需要弄清楚如何让 Google 开发者控制台为您提供缺失的信息,或者让 logcat 来记录它们。 如果没有缺失的信息,我们无法为您提供帮助。
除此之外,我可以建议您,尝试诊断此类问题的最佳方法是查看 Android 源代码。 (这在这里不是很有帮助......但如果您缺少诊断信息,那就很有帮助了。)
更新
查看类似的问题后,获得有关崩溃的更好信息的一种可能方法是遵循以下建议:
您可能想尝试与 Firebase 等解决方案集成 Crashlytics 为您提供更详细的调查工具 崩溃程度比 Play 管理中心提供的要低。
(来源)