Please Fix The Version Conflict Either By Updating The Version Of The Google-services Plugin Or Updati
I tried to add Firebase to my app like tutorial. I'm getting this error: Error:Execution failed for task ':app:processDebugGoogleServices'. Please fix the version conflict eithe
Solution 1:
compile 'com.google.firebase:firebase-core:9.4.0'
compile 'com.google.firebase:firebase-messaging:9.4.0'
compile 'com.google.android.gms:play-services-auth:10.0.1'
make google services using the same version(all 9.4.0 or all 10.0.1)
Solution 2:
You are using old version of the Firebase libraries. These are the latest:
compile 'com.google.firebase:firebase-core:10.0.1'
compile 'com.google.firebase:firebase-messaging:10.0.1'
Post a Comment for "Please Fix The Version Conflict Either By Updating The Version Of The Google-services Plugin Or Updati"