Notice
Recent Posts
Recent Comments
Link
이야기앱 세상
All com.android.support libraries must use the exact same version specification (mixing versions can lead to runtime crashes). Found versions 27.1.1, 26.1.0. 오류 발생 해결하기 본문
IT/Android
All com.android.support libraries must use the exact same version specification (mixing versions can lead to runtime crashes). Found versions 27.1.1, 26.1.0. 오류 발생 해결하기
storya 2019. 6. 25. 09:18안드로이드 스튜디오에서 프로젝트의 build.gradle의 implementation 'com.android.support:appcompat-v7:27.1.1'에서 아래와 같은 오류가 발생할 때 해결책
All com.android.support libraries must use the exact same version specification (mixing versions can lead to runtime crashes). Found versions 27.1.1, 26.1.0. Examples include com.android.support:animated-vector-drawable:27.1.1 and com.android.support:customtabs:26.1.0
이런 경우 implementation 'com.android.support:customtabs:27.1.1'를 추가해주면 해결됨. implementation 'com.android.support:appcompat-v7:27.1.1'의 버전 27.1.1과 동일한 버전으로 명시해주면 된다.
반응형
'IT > Android' 카테고리의 다른 글
Comments