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"- (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
遇到此问题需要是因为依赖的问题,需要删除代码中的依赖关系:
需要在MyApplication/app/build.gradle文件中删除未知依赖库:
Remove the unwanted libraries from the build.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'and also
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
在Android Studio v2.2.2中遇到了(27,17)错误,无法解析junit:junit:4.12等多个依赖。解决方法是检查并删除app/build.gradle文件中的无效依赖库。"
132961507,19974110,嵌入式系统开发流程详解,"['嵌入式开发', 'Arduino', 'FreeRTOS', '软件开发', '硬件选择']
1913

被折叠的 条评论
为什么被折叠?



