今天新建项目过程中,使用了 protobuf ,单编译过程一直报错,内容是
Configuration with name 'debugAndroidTestCompile' not found
该问题是gradle 版本和 protobuf 依赖版本不匹配导致的,所以用新的 protobuf 就可以了
解决办法
打开 project 的build.gradle,把依赖的protobuf 更新到新的版本,这里是0.8.5
dependencies {
...
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.5'
...
}
点击右上角 Sync Now,问题解决