如何为 firebase 性能监控创建空操作版本

How create no-op version for firebase performance monitoring

我想在使用模块的大型 android multidex 应用程序中使用 firebase performace monitoring。所以我将 apply plugindependencies 添加到我的 gradle 文件中。但是我的构建时间增加了太多。所以告诉我如何在调试版本中创建无操作版本。我的问题是我不希望 apply plugin 在 gradle 文件中(因为它仍然是测试版)在调试和发布版本中,只在 alpha 版本中。

您可以使用 documentation 中的说明禁用性能监控插件的额外功能。

解决方案现已证明:

buildTypes
{
    debug
    {
        manifestPlaceholders = [firebaseDisableMonitoring: true]
    }
    release
    {
        manifestPlaceholders = [firebaseDisableMonitoring: false]
    }
}