关于Android Studio3.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.

我在网上找到的一些解决办法
在app下的build.gradle文件中的dependences {}中添加如下代码:

androidTestCompile(‘com.android.support:support-annotations:26.1.0’) {
force = true
}
如图:
关于Android Studio3.0使用过程的一些报错_第1张图片

你可能感兴趣的:(Android)