관리 메뉴

막내의 막무가내 프로그래밍 & 일상

[안드로이드] [build.gradle 에러] All com.android.support libraries must use the exact same version specification (mixing versions can lead to runtime crashes). 본문

안드로이드

[안드로이드] [build.gradle 에러] All com.android.support libraries must use the exact same version specification (mixing versions can lead to runtime crashes).

막무가내막내 2019. 4. 20. 09:24
728x90

build.gradle에서 새로운 걸 implementation 했을때 버전 호환성 문제로 에러나는 경우에 대해 포스팅한다.

 

이렇게 에러가 나는 경우가 있는데 해법은 간단하다.

저 뒤에 형광팬 색칠한 문장이 버전이 안맞다는 것이므로 이 에러난 표시의 28.0.0버전과 똑같은 버전을 implementation에 추가해주면 된다.

implementation 'com.android.support:support-media-compat:28.0.0' 이런식으로 말이다.

만약 또 똑같은 에러가나면 똑같은 방법으로 뒷문장의 버전을 현재 내가쓰고 있는 버전으로 바꿔서 implementation해주면 된다.

728x90
Comments