IT이야기/Android

jcenter 경로 오류 : Failed to resolve : Error:(23, 17) junit:junit:4.12 in android studio 2.2

FelixShin 2016. 9. 29. 16:10
반응형



안드로이드 스튜디오 2.2 셋업이 완료되었다.

그런데 초기부터 문제가 생겨서 약간 헤맸었다.

에러 내용은  failed to resolve junit 4.12


1. 문제 상황

Sinple pjt를 만들고 빌드를 하니, 

failed to resolve junit 4.12라는 에러가 나는 것이다.


2. 해결방법

build.gradle에 maven, jcenter경로를 추가함

repositories {
    maven { url 'http://repo1.maven.org/maven2' }
    jcenter { url "http://jcenter.bintray.com/" }
}


build,gradle 내에 android와 같은 레벨에 위와 같은 repositories 내용을 추가해주면 해결~

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'
}


3. 결과

Build successful 이라는 결과를 볼 수 있었음


https://stackoverflow.com/questions/33782401/failed-to-resolve-error23-17-junitjunit4-12-in-android-studio-1-4/33783558#33783558


도움이 되셨다면 아래 공감 클릭 부탁드립니다 ^^