반응형
사용 툴 : Android studio 2.3.2
OS : Mac, 그러나 Windows도 같은 상황이 발생할 수 있음
1. 문제 :
Failed to resolve:junit:junit:4.1
새프로젝트 생성시 위와같은 에러가 나며 빌드가 되지 않음
2.해결방안 : build.gradle의 repositories를 바꿔야함
1) build.gradle 파일 내부(변경전)
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
2) 변경후
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
//jcenter()
jcenter { url 'http://jcenter.bintray.com' }
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter { url 'http://jcenter.bintray.com' }
//jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
문제 원인 : 회사 사내망 개발시 proxy문제 때문에 jcenter의 경로를 구체적으로 적어주어야 한다.
jcenter { url 'http://jcenter.bintray.com' }
'IT이야기 > Android' 카테고리의 다른 글
[Android] 안드로이드 다중화면 지원 (0) | 2017.08.07 |
---|---|
안드로이드 개발 : 다음 버튼(Next button) 동작 설정 (1) | 2017.06.05 |
[개발] 안드로이드 Fragment란? (3) | 2017.05.29 |
[Android] 어플리케이션 클래스 간단히 정리(Android Application Class) (0) | 2017.04.26 |
안드로이드 개발, Color의 모든것 (1) | 2017.04.02 |