728x90
반응형
에러 내용
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.
해결 :
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.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
compile 'com.android.support:support-annotations:27.1.1' <<를 추가해 준다.
}
출처: http://stage-diary.tistory.com/232 [꽃이 흘러 내리는 나만의 스테이지]
728x90
반응형
'Android' 카테고리의 다른 글
Navigation View (0) | 2018.07.07 |
---|---|
(스크랩) Android Firebase FCM Launch Activity 지정하기. (원하는 Activity 실행하기) (0) | 2018.06.29 |
안드로이드 노티피 케이션 해드업 알림 (0) | 2018.06.23 |
안드로이드 진동 Vibrate (0) | 2018.06.21 |
switch 버튼 색상 바꾸기 (0) | 2018.06.20 |