Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 백준
- 안드로이드
- sending 404
- kotiln
- utuntu
- 코틀린
- nvcc
- 빅데이터청년인재
- DataBinding Error
- IT연합동아리
- 인공지능
- 빅데이터청년캠퍼스
- resample2d_cuda
- flownet
- ubuntu
- NEXTERS
- 이것만보면돼
- 데이터청년캠퍼스
- 알고리즘
- 빅데이터
- 딥러닝
- ubuntu18.04
- Android
- 넥스터즈
- 청년인재
- clean architecture
- 자바
- cuda-10.2
- 머신러닝
- 소켓통신
Archives
- Today
- Total
보초의 코딩일기장
[안드로이드] Error:Execution failed for task ':app:preDebugAndroidTestBuild'. 문제해결 본문
Android
[안드로이드] Error:Execution failed for task ':app:preDebugAndroidTestBuild'. 문제해결
장보비 2018. 5. 3. 17:04Error: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.
해결방안)
gradle.module(Mudole:app) 의
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' 를
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' 로 수정
androidTestImplementation 'com.android.support.test:runner:1.0.2' 를
androidTestImplementation 'com.android.support.test:runner:1.0.1'로 수정하면 해당오류가 사라진다.
Comments