美文网首页
使用 protobuf 过程中gradle 提示Configur

使用 protobuf 过程中gradle 提示Configur

作者: 蘭舟 | 来源:发表于2018-07-19 09:50 被阅读0次

今天新建项目过程中,使用了 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,问题解决

相关文章

网友评论

      本文标题:使用 protobuf 过程中gradle 提示Configur

      本文链接:https://www.haomeiwen.com/subject/gcmzpftx.html