首页 > 解决方案 > 带有无用信息的 Android Crashlytics 日志,如何定位错误?

问题描述

我在我的 Android 应用程序的 Firebase 控制台上收到了这个 Crashlytics 日志。

我不知道哪个模块导致了这个问题,

通过调查,我收集了一些信息:

谁能告诉我你找到这个问题的错误来源的方法?

Crashed: Thread :  SIGABRT  0x000027b100003d06
#00 pc 0x7f9a3a070c  
#01 pc 0x7f9a39e544  
#02 pc 0x7f9a359aa4  
#03 pc 0x7f9a354244  
#04 pc 0x7f9a35768c  
#05 pc 0x7f9a3576b0  
#06 pc 0x7f9a3a75d4  
#07 pc 0x7f896c02e0  
#08 pc 0x7f896c941c  
#09 pc 0x13ad881c  
#10 pc 0x7f896c9064  
#11 pc 0x13ee457c  
#12 pc 0x1455087c  
#13 pc 0x70bf21d4  
#14 pc 0x13ad881c  
#15 pc 0x70bf21d4  
#16 pc 0x70da64d4  
#17 pc 0x70b89b3c  
#18 pc 0x7f9a83f464  
#19 pc 0x13ad881c  
#20 pc 0x13ad881c  
#21 pc 0x13ee457c  
#22 pc 0x1455087c  
#23 pc 0x70bf21d4  
#24 pc 0x136c9c1c  
#25 pc 0x73bea754 boot.oat 
#26 pc 0x70bf21d4  
...

- - 更新 - -

我没有使用proguard:

android/app/build.gradle

def enableProguardInReleaseBuilds = false
...
android: {
  ...
  buildTypes: {
    ...
    release: {
      minifyEnabled enableProguardInReleaseBuilds
      shrinkResources enableProguardInReleaseBuilds
    }
  }
}

标签: androidcrashlyticssigabrt

解决方案


推荐阅读