Error
안드로이드 zzaja, zzbgl not found 에러
지구
2018. 8. 6. 15:23
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'
반응형