Cannot access zzbfm class file zzbfm not found, firebase, android?
Cannot access zzbfm class file zzbfm not found, firebase, android?
While you have integrated play services and firebase in your app. When you run the application you get this error. Right ?
cannot access zzbfm
class file for com.google.android.gms.internal.zzbfm not found
Don't Worry Try these :
You can't mix versions <= 12 and versions >= 15 of Firebase libraries.
implementation 'com.google.firebase:firebase-core:16.0.0'
implementation 'com.google.firebase:firebase-auth:11.6.2'
implementation 'com.google.firebase:firebase-messaging:11.8.0'
The easiest fix is to upgrade all of these to version 16 or later:
implementation 'com.google.firebase:firebase-core:16.0.0'
implementation 'com.google.firebase:firebase-auth:16.0.1'
implementation 'com.google.firebase:firebase-messaging:17.0.0'
All of these versions are from the setting up Firebase for Android documentation, so be sure to check there for the latest updates.
Background: In version 12 and lower the versions of all Firebase (and Play Services) libraries in a project had to be exactly the same. In version 15 later, you can mix versions. But there is no way to mix <= 12 and >= 15 libraries in a single project.
Comments
Post a Comment