이야기앱 세상

All com.android.support libraries must use the exact same version specification (mixing versions can lead to runtime crashes). Found versions 28.0.0, 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 28.0.0, 26.1.0. 오류 해결책

storya 2019. 6. 28. 09:05

안드로이드 스튜디오에서 프로젝트의 build.gradle의 implementation 'com.android.support:appcompat-v7:28.0.0'에서 아래와 같은 오류가 발생할 때 해결책

 

All com.android.support libraries must use the exact same version specification (mixing versions can lead to runtime crashes). Found versions 28.0.0, 26.1.0. Examples include com.android.support:animated-vector-drawable:28.0.0 and com.android.support:customtabs:26.1.0

 

이런 경우 implementation 'com.android.support:customtabs:28.0.0'과 implementation 'com.android.support:support-v4:28.0.0'를 추가해주면 해결됨. implementation 'com.android.support:appcompat-v7:28.0.0'의 버전 28.0.0과 동일한 버전으로 명시해주면 된다.

반응형
Comments