공감 및 댓글은 포스팅 하는데 아주아주 큰 힘이 됩니다!! 포스팅 내용이 찾아주신 분들께 도움이 되길 바라며 더 깔끔하고 좋은 포스팅을 만들어 나가겠습니다^^
|
안드로이드에서 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'
위 코드를 추가해주면 간단하게 해결됩니다!!
이상입니다.
'안드로이드' 카테고리의 다른 글
안드로이드 레이아웃 width, height 구하기! (0) | 2018.05.10 |
---|---|
안드로이드 Canvas, Paint 로 좌표에 점 찍기 (0) | 2018.05.09 |
안드로이드 스튜디오 minimum supported gradle version is 4.4. current version is 4.1 해결방법! (0) | 2018.05.08 |
안드로이드 Materialsearchview 라이브러리 소개! (0) | 2018.04.13 |
안드로이드 EditText Cursor 커서 색상 변경 (0) | 2018.04.12 |