使用android gradle插件3.6+执行crashlyticsGenerateSymbols任务时出错,

问题描述 投票:0回答:1

我在哪里报告此错误?还是有人可以帮助我?

“为属性“ $ 2”指定的目录X不存在”错误,当执行crashlyticsGenerateSymbols任务时与

android gradle plugin 3.6.0
gradle version 5.6.4
fabric gradle plugin 1.31.2

[错误日志]

Some problems were found with the configuration of task ':~~~~~:crashlyticsGenerateSymbolsRelease' (type 'DefaultTask').

Directory '~~~' specified for property '$1' does not exist.
Directory '~~~~' specified for property '$2' does not exist.
android crashlytics google-fabric
1个回答
0
投票

我遇到同样的问题,并通过从应用程序级别的ext.enableCrashlytics = false中删除build.gradle来解决此问题>

android {
  buildTypes {
    debug {
     // ext.enableCrashlytics = false
    }
  }
}
© www.soinside.com 2019 - 2024. All rights reserved.