错误:(26,17)无法解决:junit:junit:4.12 android studio 1.5

时间:2015-12-13 10:20:00

标签: java android gradle junit build.gradle

嗯,我无法弄清楚我已经尝试了所有可能的解决方案,我发现但没有像这样的工作

Error:(23, 17) Failed to resolve: junit:junit:4.12

这两个问题的主要区别在于我的错误是(26,17)而他的是(23,17) 这是我的build.glade代码

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.2"
 defaultConfig {
    applicationId "com.example.vaio.myapplication2"
    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'
}

0 个答案:

没有答案