반응형

안드로이드 빌드 오류

Could not determine the dependencies of task ':app:compileDebugJavaWithJavac'.
> In project 'app' a resolved Google Play services library dependency depends on another at an exact version (e.g. "[17.4.
  1]", but isn't being resolved to that version. Behavior exhibited by the library will be unknown.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

 

google filebase를 앱에 추가한 후 빌드시 발생했다.

build.gradle에 추가한 implementation 'com.google.firebase:firebase-analytics:17.4.1'에서 다른것과 충돌이 발생한것으로 추정되었으며 오류메시지의 Try 항목은 도움이 되지 않았다.

 

https://firebase.google.cn/docs/android/setup?hl=ko 

 

Android 프로젝트에 Firebase 추가  |  Firebase Documentation

기본 요건 Android 프로젝트가 준비되지 않았다면 빠른 시작 샘플 중 하나를 다운로드하여 Firebase 제품을 사용해 볼 수 있습니다. 다음 옵션 중 하나를 사용하여 Android 앱을 Firebase에 연결할 수 있

firebase.google.cn

 

 

위 사이트에 나와있는대로 버전들을 통일시키던 중 com.google.firebase:firebase-analytics 항목을 19.0.2로 수정했더니 해결되었다.