Crashlytics 正在记录错误行号的崩溃

问题描述 投票:0回答:2

我收到了来自不同设备上的许多用户的大量崩溃报告,所有这些都发生在我的应用程序的第 4 行:

但第 4 行只是导入:

我在 Linux 笔记本电脑上运行 Android Studio 3.6.1。

android android-studio crashlytics-android
2个回答
2
投票

就我而言,问题不在于 Firebase,而在于 R8 缩小。正如here所指出的,尝试将

-keepattributes LineNumberTable,SourceFile
添加到您的
proguard.pro
文件中。应该有帮助。


0
投票

Vít Kapitola 的回答不足以解决我的问题。另外;
将您的

-keepattributes LineNumberTable,SourceFile
-renamesourcefileattribute SourceFile
添加到您的
proguard.pro
文件中。

欲了解更多信息: https://developer.android.com/build/shrink-code#retracing

© www.soinside.com 2019 - 2024. All rights reserved.