gpt4 book ai didi

android - 为 Android 禁用 firebase crashlytics

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:51:48 25 4
gpt4 key购买 nike

我正在开发一个 Android 应用程序并集成了 firebase 和 firebase crashlytics SDK。

我想允许用户禁用崩溃报告(以确保符合 GDPR - 我假设崩溃报告与 GDPR 相关)因此需要一种方法让用户能够通过应用设置禁用它。

我在 https://firebase.google.com/docs/crash/disable-sdk 找到了文档但是当我尝试这条线时:

FirebaseCrash.setCrashCollectionEnabled(true);

Android Studio 给我错误 cannot resolve symbol 'FirebaseCrash'

这需要在应用程序运行时以编程方式完成。

最佳答案

在您的模块中构建 gradle...

    release {
//true value to send the crashlytics to the firebase
manifestPlaceholders = [crashlyticsCollectionEnabled: "true"]
}

debug {
//false value to stop sending the crashlytics to the firebase
manifestPlaceholders = [crashlyticsCollectionEnabled: "false"]
}

在 list 中

 <meta-data
android:name="firebase_crashlytics_collection_enabled"
android:value="${crashlyticsCollectionEnabled}" />

关于android - 为 Android 禁用 firebase crashlytics,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52063465/

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