美文网首页
Android Studio 新建项目出现Test版本大于App

Android Studio 新建项目出现Test版本大于App

作者: 黑白岩 | 来源:发表于2018-06-27 15:00 被阅读0次

    问题:

    Error:Execution failed for task ':app:preDebugAndroidTestBuild'.

    > Conflict with dependency 'com.android.support:support-annotations' in project ':app'. Resolved versions for app (26.1.0) and test app (27.1.1) differ. See https://d.android.com/r/tools/test-apk-dependency-conflicts.html for details.

    studio 3.0 新建项目 默认 build.gradle(project :)

    出现以上问题 直接看是看不出来的 在重新编译后就会报出出以上错误

    解决方法:

    在 dependencies{} 中添加 下面的代码

    androidTestCompile('com.android.support:support-annotations:26.1.0') {

    force =true

    }

    如图  重新编译就可以了

    相关文章

      网友评论

          本文标题:Android Studio 新建项目出现Test版本大于App

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