android studio 新建项目报错如下:
(27,17) Failed to resolve: junit:junit:4.12
Failed to resolve: javax.inject:javax.inject:1
Failed to resolve: javax.annotation:javax.annotation-api:1.2
Failed to resolve: com.google.code.findbugs:jsr305:2.0.1
Failed to resolve: org.hamcrest:hamcrest-library:1.3
Failed to resolve: org.hamcrest:hamcrest-integration:1.3
Failed to resolve: com.squareup:javawriter:2.1.1
解决办法:
注释gradle文件中的
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'
})
testCompile 'junit:junit:4.12'
和
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" (可删可不删的)