简体   繁体   English

Google Play控制台崩溃报告与我的应用无关

[英]Google Play Console crash report not related to my app

Google Play Console reported crashes for an app of mine that obviously do not relate to my app. Google Play控制台报告说我的一个应用程序崩溃显然与我的应用程序无关。 This information is provided: 提供此信息:

android.app.RemoteServiceException: android.app.RemoteServiceException:

  1. at android.app.ActivityThread$H.handleMessage (ActivityThread.java:1768) 在android.app.ActivityThread $ H.handleMessage(ActivityThread.java:1768)

  2. at android.os.Handler.dispatchMessage (Handler.java:106) 在android.os.Handler.dispatchMessage(Handler.java:106)

  3. at android.os.Looper.loop (Looper.java:164) 在android.os.Looper.loop(Looper.java:164)

  4. at android.app.ActivityThread.main (ActivityThread.java:6494) 在android.app.ActivityThread.main(ActivityThread.java:6494)

  5. at java.lang.reflect.Method.invoke (Native Method) 在java.lang.reflect.Method.invoke(本机方法)

  6. at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run (RuntimeInit.java:438) 在com.android.internal.os.RuntimeInit $ MethodAndArgsCaller.run(RuntimeInit.java:438)

  7. at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:807) 在com.android.internal.os.ZygoteInit.main(ZygoteInit.java:807)

As you can see my app is not even mentioned. 如您所见,我的应用程序甚至都没有提及。 So I wonder whether that crash report actually relates to my app. 因此,我想知道该崩溃报告是否确实与我的应用有关。 Resp. RESP。 I'd like to know how to identify the issue in my coding causing that crash. 我想知道如何识别导致崩溃的代码。 Maybe the stack trace is truncated. 也许堆栈跟踪被截断了。 But I cannot access any subsequent items. 但是我无法访问任何后续项目。

Any ideas appreciated. 任何想法表示赞赏。

This is not the same as the question mentioned. 这与提到的问题不同。 There it is about fixing a concrete issue. 那里是解决一个具体问题。 Here it is about a vague issue indicated by Google Play Console, not being specific whether or how that issue relates to my app at all. 这里是有关Google Play控制台显示的一个模糊问题,而不是具体说明该问题是否与我的应用相关。

It will always relate to your app - Google Play knows for the crash which process it belongs to, and each app has it's own process. 它将始终与您的应用相关-Google Play会在崩溃时知道它属于哪个进程,并且每个应用都有自己的进程。 If you don't see your app mentioned, it will be because your code inherits from some other code in the Android Platform. 如果您没有看到提及您的应用程序,那是因为您的代码继承自Android平台中的其他一些代码。 In the example you give above, the crash will be happening in an ActivityThread for an activity in your app. 在上面给出的示例中,崩溃将发生在应用程序中活动的ActivityThread中。

Android is open source. Android是开源的。 So you can look at the source code and see what might be happening. 因此,您可以查看源代码,看看可能会发生什么。

Searching in Google for "ActivityThread source code" finds the source . 在Google中搜索“ ActivityThread源代码”即可找到

Looking at line 1768 you see the RemoteServiceException is thrown because a SCHEDULE_CRASH message was received . 查看1768行,您会看到由于收到SCHEDULE_CRASH消息而引发了RemoteServiceException。

Searching the android source code will help you see what might have caused this. 搜索android源代码将帮助您查看可能导致此问题的原因。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 我的应用在 Google Play 控制台上的原生崩溃 发布前报告详细信息 - Native crash of my app on Google play console Pre-launch report details 在 Google Play Console 上找不到崩溃报告 - Could not find crash report on Google Play Console Google Play开发者控制台上的奇怪崩溃报告 - Weird Crash Report on Google Play Developer Console Play控制台崩溃群集显示新的应用崩溃报告 - Play Console Crash cluster Showing new App Crash Report firebase 控制台未显示我的应用程序崩溃报告 - firebase console not showing my App Crash report Google Play控制台-崩溃报告:java.lang.RuntimeException - Google Play Console - Crash Report: java.lang.RuntimeException 活动响应方法中首选项管理器的 Google Play 控制台崩溃报告 - Google Play Console Crash Report on preference manager in on response method of Activity 与我的 Flutter 应用程序未使用的功能相关的奇怪的 Play 商店崩溃 - Weird Play Store crash related to features not used by my Flutter app Google Play 预发布报告崩溃 - Google Play Prelaunch Report Crash Google Play控制台报告应用程序崩溃,我无法复制 - Google Play console reports app crash, I can not reproduce
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM