상세 컨텐츠

본문 제목

Error:Execution failed for task ':app:preDebugAndroidTestBuild'. 문제해결

개발 환경/Android

by cepiloth 2018. 6. 30. 10:18

본문

728x90
반응형





1
2
3
4
5
Error:Execution failed for task ':app:preDebugAndroidTestBuild'.
 
> Conflict with dependency 'com.android.support:support-annotations' in project ':app'
> Resolved versions for app (26.1.0) and test app (27.1.1) differ. 
> See https://d.android.com/r/tools/test-apk-dependency-conflicts.html for details.
cs


1
2
3
4
5
6
7
8
dependencies {
    implementation fileTree(dir: 'libs'include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:26.1.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.1'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}
cs


build.gradle 내의 dependencies 블록 내용을 아래와 같이 수정 한다.

'com.android.support.test:runner:1.0.1'

'com.android.support.test.espresso:espresso-core:3.0.1'


728x90
반응형

'개발 환경 > Android' 카테고리의 다른 글

Android - IME 포커스 제거 및 사용하지 않기  (0) 2018.09.04
Android Studio 단축키  (0) 2018.09.04
GRADLE - APK 이름 변경 하기  (0) 2017.12.12
INSTALL_FAILED_NO_MATCHING_ABIS  (0) 2017.12.10
NDK 빌드 경로 설정  (0) 2017.12.10

관련글 더보기

댓글 영역