问题描述
解决方案
这应该是你底部面板显示的编译错误提示,只要能编译通过,不用管这些。
解决方案二:
到你工程下的build.gradle 的 dependencies 中把 junit 那一行注释掉就好了
解决方案三:
testCompile 'junit:junit:4.12'
解决方案四:
解决方法如下:
在build.gradle文件中找到这一行,比如
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'//就是这一行
compile 'com.android.support:appcompat-v7:23.0.1'
}
把这一行删了,这时候右上角会弹出一个sync now 按钮,点击重新sync一下gradle文件就可以了
时间: 2024-12-04 23:38:00