Can't Build With Firebase-config:16.0.0 And Firebase-core:16.0.1
When I build with the latest released versions of firebase-config and firebase-core, I get this error:  The library com.google.android.gms:play-services-measurement-base is   being
Solution 1:
Oddly enough, the error does not occur when firebase-core is placed before other Firebase libs in the dependencies list:
dependencies {
    ...
    implementation 'com.google.firebase:firebase-core:16.0.1'
    implementation 'com.google.firebase:firebase-config:16.0.0'
    ...
}
Post a Comment for "Can't Build With Firebase-config:16.0.0 And Firebase-core:16.0.1"