小编Dr.*_*.M.的帖子

Firebase Crashlytics Minify R8 Android

该应用程序在正常情况下运行良好,但当我尝试实现 minify 和 R8 时。这会引发以下错误。

* What went wrong:
Execution failed for task ':app:uploadCrashlyticsMappingFileAlpha'.
> Failed to calculate the value of task ':app:uploadCrashlyticsMappingFileAlpha' property 'googleServicesResourceRoot'.
   > Could not get unknown property 'intermediateDir' for task ':app:processAlphaGoogleServices' of type com.google.gms.googleservices.GoogleServicesTask.
Run Code Online (Sandbox Code Playgroud)
* Exception is:
org.gradle.api.tasks.TaskExecutionException: Execution failed for task ':app:uploadCrashlyticsMappingFileAlpha'.

//..... More Error Line
Run Code Online (Sandbox Code Playgroud)

我收到上述错误,并且完全不知道发生了什么。

buildTypes {
        getByName("debug") {
            applicationIdSuffix = ".sandbox"
            debuggable true
        }
        alpha {
            minifyEnabled true
            shrinkResources true
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
            versionNameSuffix ".alpha"
        }
}
Run Code Online (Sandbox Code Playgroud)

这是我使用的上面的代码,我正在尝试构建 Alpha,但是当我调试时工作正常。

android gradle firebase crashlytics android-r8

20
推荐指数
1
解决办法
1267
查看次数

标签 统计

android ×1

android-r8 ×1

crashlytics ×1

firebase ×1

gradle ×1