반응형
안드로이드 스튜디오 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
도움이 되셨다면 아래 공감 클릭 부탁드립니다 ^^
'IT이야기 > Android' 카테고리의 다른 글
안드로이드 실선 그리기 (0) | 2016.10.14 |
---|---|
no resource identifier found for attribute 'srcCompat' in package (0) | 2016.10.03 |
[Android개발] 앱 시작시키는 방법 (1) | 2016.03.28 |
[안드로이드]다운로드매니저 애러 잡기 (0) | 2016.03.02 |
onTouchListener와 onClickListener 구현 차이(서비스에서 보이지 않는 버튼 구현하기)와 이벤트 리스너들 (2) | 2015.12.17 |