gpt4 book ai didi

android - 将 ProGuard 映射文件上传到 Firebase

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:33:23 24 4
gpt4 key购买 nike

我正在试用最近发布的功能,该功能允许使用 gradle 任务将 ProGuard 映射文件上传到 Firebase (https://firebase.google.com/docs/crash/android)。以下是我正在运行的任务。

./gradlew -PFirebaseServiceAccountFilePath=xxxxx.json :app:firebaseUploadReleaseProguardMapping

但是,它似乎无法识别服务帐户文件。有没有人有幸让这个工作?我还尝试在 gradle.properties 中定义 FirebaseServiceAccountFilePath

* What went wrong:
Execution failed for task ':app:firebaseUploadReleaseProguardMapping'.
> Service account file path has not been defined! Service accounts are used to authorize your mapping file uploads. Learn more at
https://firebase.google.com/docs/crash/android.

最佳答案

在gradle.properties(项目根目录)中设置json的相对路径

FirebaseServiceAccountFilePath = /firebase-crashreporting.json

并在你的 build.gradle 中更新这个属性

apply plugin: 'com.android.application'
apply plugin: 'com.google.firebase.firebase-crash'

android {
...
}

setProperty("FirebaseServiceAccountFilePath", rootProject.rootDir.absolutePath + FirebaseServiceAccountFilePath)

dependencies {
...
}

关于android - 将 ProGuard 映射文件上传到 Firebase,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41198758/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com