안드로이드

안드로이드 스튜디오All com.android.support libraries must use the exact same version specification (mixing versions can lead to runtime crashes). 해결방법!

알통몬_ 2018. 5. 8. 16:37
반응형


공감 및 댓글은 포스팅 하는데

 아주아주 큰 힘이 됩니다!!

포스팅 내용이 찾아주신 분들께 

도움이 되길 바라며

더 깔끔하고 좋은 포스팅을 

만들어 나가겠습니다^^

 


안드로이드에서 firebase 를 사용하려고 기본 설정을 마치면

build.gradle(Module.app) 파일에서

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, 25.2.0. Examples include com.android.support:animated-vector-drawable:27.1.1 and com.android.support:support-media-compat:25.2.0 less... (Ctrl+F1) 

There are some combinations of libraries, or tools and libraries, that are incompatible, or can lead to bugs. One such incompatibility is compiling with a version of the Android support libraries that is not the latest version (or in particular, a version lower than your targetSdkVersion.)

이런 에러가 있다!!! 라고 알려줍니다;;;


그래서 이런 저런 해결방법을 찾아봤는데,

구글링해서는 방법을 못찾았어요 ㅋㅋㅋ

해결방법은 간단했습니다.

dependencies에

implementation 'com.android.support:design:27.1.1'


위 코드를 추가해주면 간단하게 해결됩니다!!


이상입니다.


반응형