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 | 31 |
Tags
- 인공지능
- 안드로이드
- kotiln
- 이것만보면돼
- 청년인재
- 빅데이터청년캠퍼스
- NEXTERS
- 소켓통신
- 머신러닝
- 데이터청년캠퍼스
- 넥스터즈
- IT연합동아리
- Android
- 코틀린
- clean architecture
- nvcc
- ubuntu
- 알고리즘
- 빅데이터청년인재
- 자바
- 백준
- 빅데이터
- 딥러닝
- sending 404
- DataBinding Error
- ubuntu18.04
- utuntu
- cuda-10.2
- flownet
- resample2d_cuda
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