美文网首页
Conflict with dependency 'com.go

Conflict with dependency 'com.go

作者: 我才是张雷 | 来源:发表于2017-06-15 20:37 被阅读0次

    错误内容:

    Warning:Conflict with dependency 'com.google.code.findbugs:jsr305'.
    Resolved versions for app (3.0.1) and test app (2.0.1) differ. 
    See http://g.co/androidstudio/app-test-app-conflict for details.
    

    解决办法:
    在app的gradle中

    android {
        ...
        configurations.all {
            resolutionStrategy.force 'com.google.code.findbugs:jsr305:1.3.9'
        }
    }
    

    相关文章

      网友评论

          本文标题:Conflict with dependency 'com.go

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