我想打開新的android項目,然後我會得到一個錯誤,錯誤是, 未能解決:junit:junit:4.12 錯誤(23,13) 請幫我修理它。打開新的android項目時出錯
的build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "24.0.0"
defaultConfig {
applicationId "com.example.akhil.myapplication"
minSdkVersion 22
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'])
compile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'
}
在這裏發表您'build.gradle'文件。 – Ironman
[錯誤:(23,17)無法解析:junit:junit:4.12](http://stackoverflow.com/questions/32519219/error23-17-failed-to-resolve-junitjunit4-12) – Shashanth
@Akhil在下面看到我的答案。 – Ironman