-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dependency conflict with firebase plugins on play-services-base
#4
Labels
enhancement
New feature or request
Comments
Temporary workaround in
|
Thanks for the report. I will match the plugin's firebase version to other firebase plugins. |
For me that workaround does not work, gives multidex error. |
@flutterite use this: configurations.all {
resolutionStrategy {
eachDependency { details ->
if (details.requested.group == 'com.google.android.gms' ||
details.requested.group == 'com.google.firebase') {
details.useVersion "11.8.0"
}
}
}
} |
Fixed in 0.2.1. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Current firebase plugins depend on 11.8.0 while geolocation on 12.0.1. Don't know what the resolution is and not a big mobile developer. Tips how this could be resolved?
The text was updated successfully, but these errors were encountered: