Class file for com.google.android.gms.internal.zzaja not found
error: cannot access zzbgl, class file for com.google.android.gms.internal.zzbgl not found
안드로이드에서 Firebase 로 FCM 서비스 구현하려고 기반 셋팅중에 이런 에러가 발생했다.
찾아보니 원인은 ...
Gradle 에서 firebase-messaging 버전과 firebase-core 버전이 달라서 발생한 에러였다 !!
원래는 아래와 같았다면
implementation 'com.google.firebase:firebase-core:16.0.0'
implementation 'com.google.firebase:firebase-messaging:11.8.0'
▼
이 아래와 같이 버전을 맞게끔 수정해주니 해결!
implementation 'com.google.firebase:firebase-core:11.8.0'
implementation 'com.google.firebase:firebase-messaging:11.8.0'
반응형
'Error' 카테고리의 다른 글
INSTALL_FAILED_INVALID_APK: Split lib_slice_6_apk was defined multiple times. (0) | 2018.08.15 |
---|---|
Revoked permission android.permission.CALL_PHONE (0) | 2018.08.09 |
Unsupported Media Type (415) (0) | 2018.07.17 |
[jQuery] bootstrap.min.js:6 Uncaught Error: Bootstrap's JavaScript requires jQuery (0) | 2018.07.09 |
some characters cannot be mapped using "ISO-8859-1" character encoding (0) | 2018.07.06 |
댓글