我上个月在这个位置复制并编译了语音api的源代码https://github.com/GoogleCloudPlatform/android-docs-samples/tree/master/speech/Speech 和工作。现在,当我重新访问它时,我正在使用 配置名称' debugAndroidTestCompile'找不到。 错误。
造成这种情况的原因是什么?如果你问我怎么知道它是那个,我做了消除的过程。我在gradle文件上逐个删除并同步。当我删除 应用插件:' com.google.protobuf' 时,错误消失。
答案 0 :(得分:12)
将protobuf
版本更新为build.gradle
中的最新版本。目前它是0.8.8
,请检查GitHub存储库Protobuf Plugin for Gradle中的最新版本。
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.8'
}
}