Firebase Crashlytics 何时将 Proguard/R8 映射文件上传到他们的服务器?
When does Firebase Crashlytics upload Proguard/R8 mapping file to their server?
我们一直在使用 Google Play 管理中心来捕获崩溃报告。
我们需要手动上传 Proguard/R8 映射文件,以便对崩溃堆栈跟踪进行去混淆处理。
根据 https://firebase.google.com/docs/crashlytics/get-deobfuscated-reports?authuser=0&platform=android and ,不再需要这样的操作。
请问幕后发生了什么? Firebase Crashlytics 何时将 Proguard/R8 映射文件上传到他们的服务器?
当您 运行 构建时,上传会自动发生。在构建输出中,您将看到类似这样的一行:
:app:crashlyticsUploadDistributionDevelopDebug
这是上传映射的任务。这全部由您添加到构建中的 crashlytics gradle 插件管理。
我们一直在使用 Google Play 管理中心来捕获崩溃报告。
我们需要手动上传 Proguard/R8 映射文件,以便对崩溃堆栈跟踪进行去混淆处理。
根据 https://firebase.google.com/docs/crashlytics/get-deobfuscated-reports?authuser=0&platform=android and
请问幕后发生了什么? Firebase Crashlytics 何时将 Proguard/R8 映射文件上传到他们的服务器?
当您 运行 构建时,上传会自动发生。在构建输出中,您将看到类似这样的一行:
:app:crashlyticsUploadDistributionDevelopDebug
这是上传映射的任务。这全部由您添加到构建中的 crashlytics gradle 插件管理。