Error After Updating Play-services "program Type Already Present: Com.google.android.gms.internal.measurement.zzabo"
Solution 1:
In my case, I had to update Firebase from version 15.0.0 to 15.0.2 in project's build.gradle:
dependencies {
...
implementation "com.google.firebase:firebase-messaging:15.0.2"
...
}
And then in app's build.gradle I had to update google-services from 3.1.1 to 3.3.0:
dependencies {
...
classpath 'com.google.gms:google-services:3.3.0'
...
}
Solution 2:
You can try using the exact version number following this link:
https://firebase.google.com/support/release-notes/android#latest_sdk_versions
SDK Update - May 2, 2018 - Firebase Android SDKs now have independent version numbers, allowing for more frequent, flexible updates.
Solution 3:
I faced the same problem today. Google comes with the new release on 02 may 2018.
Please go to the link and set the version no according to the doc:
https://firebase.google.com/support/release-notes/android#20180502
for e.g.
Firebase Core com.google.firebase:firebase-core:15.0.2
Solution 4:
Try using firebase libs version 15.0.2
or higher instead. Also clean your project ./gradlew clean
, as well as kill your Gradle daemons: ./gradlew --stop
Solution 5:
1.Update all the firebase libs according to this release page.
2.Update google location and google map service to 15.0.1.
implementation 'com.google.android.gms:play-services-maps:15.0.1'
implementation 'com.google.android.gms:play-services-location:15.0.1'
implementation 'com.google.android.gms:play-services-places:15.0.1'
Post a Comment for "Error After Updating Play-services "program Type Already Present: Com.google.android.gms.internal.measurement.zzabo""