初学安卓,用的studio2.2.2,运行模拟器的时候出现图中的错误信息...不知道是怎么回事...
编译器版本:
jdk1.8,sdk 25,Gradle version 2.14.1
Android Plugin Version2.2.2
另外创建新项目的时候会出错,Message里提示
Error:Failed to resolve: javax.annotation:javax.annotation-api:1.2
依赖里默认是这样的...
dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) compile 'com.android.support:appcompat-v7:25.0.0' testCompile 'junit:junit:4.12' }
把 androidTestCompile的改成 'junit:junit:4.12'就不报错了,这又是什么原因?