使用 protobuf 过程中gradle 提示Configuration with name 'debugAndroidTestCompile' not found

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

    原文作者:蘭舟
    原文地址: https://www.jianshu.com/p/82505b608111
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞