If i use 9.2.0 in my app, then on using Firebase-UI (which uses 9.0.2) I get the following
FATAL EXCEPTION: main
Process: XXXXXXXXX, PID: 4362
java.lang.NoSuchMethodError: No virtual method zztw()Ljava/util/Set; in class Lcom/google/android/gms/common/internal/zzg; or its super classes (declaration of 'com.google.android.gms.common.internal.zzg' appears in /data/app/XXXXXXXXX-2/base.apk)
We really need this cant use this library with play services 9.2.0
I don't know why, but this stackoverflow question didn't solve this issue. Please update to 9.2.0.
@gouravd while we're working on the next version, if you want to use Firebase 9.2.0 libraries with FirebaseUI-Android, try this in your build.gradle file:
android {
// ...
configurations.all {
resolutionStrategy.force 'com.google.firebase:firebase-auth:9.2.0'
resolutionStrategy.force 'com.google.android.gms:play-services-auth:9.2.0'
}
}
I think that will resolve your issue for now.
@samtstern When is the new build coming with firebase 9.2.0 ?
@kirtan403 I just went ahead and released version 0.4.2 which should solve this issue by upgrading the underlying dependency.
@samtstern Awesome!
Most helpful comment
@kirtan403 I just went ahead and released version
0.4.2which should solve this issue by upgrading the underlying dependency.