我正在使用Android Studio 1.4,每次创建新项目时都会发生同样的错误
Error:(23, 17)"Failed to resolve: junit:junit:4.12".
我读过上一篇关于同一问题的帖子
Error:(23, 17) Failed to resolve: junit:junit:4.12
并完成了所有给定的答案,但尽管为丢失的存储库添加了网址(“http://repo1.maven.org/maven2”和“http://jcenter.bintray.com/”),但错误仍然存在
这是我最新的build.gradle代码
apply plugin: 'com.android.application'
android {
compileSdkVersion 14
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.example.myapplication"
minSdkVersion 14
targetSdkVersion 14
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:22.+'
}
答案 0 :(得分:28)
如果要将它们添加到buildscript中,则会出现错误。
这是buildscript存储库和依赖项的存储库之间的区别。 buildscript用于gradle构建依赖项。
您需要将以下内容添加到build.gradle文件中,它应该可以正常工作。
repositories {
maven { url 'http://repo1.maven.org/maven2' }
jcenter { url "http://jcenter.bintray.com/" }
}
以下应该工作:
apply plugin: 'com.android.application'
repositories {
maven { url 'http://repo1.maven.org/maven2' }
jcenter { url "http://jcenter.bintray.com/" }
}
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.example.application"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
}
答案 1 :(得分:7)
对我而言,顶级gradle构建文件中缺少allprojects部分:
buildscript {
[...]
}
allprojects { // <-- required!!!
repositories {
jcenter()
}
}
答案 2 :(得分:4)
(C:\Program Files\Android\Android Studio\lib)
junit-4.12.jar
档案(myproject\app\libs)
(testCompile 'junit:junit:4.12')
档案中的build.gradle
并右键单击jar文件,然后选择add as a library
只需构建您的项目(有关详细信息,请参见下图)