-
Notifications
You must be signed in to change notification settings - Fork 615
firebase-common: version conflict with auto-value-annotations #317
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
Comments
I found a few problems with this issue:
|
As a hotfix you can force the dependency: allprojects {
configurations.all {
resolutionStrategy {
force("com.google.auto.value:auto-value-annotations:1.6.3")
}
}
} |
Yep, that's exactly what we're doing. |
/assign @vkryachko |
Note that another possible workaround (at least on my project) was to just start including my own |
hi i must to put this where? |
In android/build.gradle |
it doesn't work fo me |
Steps to reproduce:
The
firebase-common
dependency exposesauto-value-annotations
via itsapi
configuration. This leads to build failures when the consuming project includes a dependency on a different version ofauto-value-annotations
.For example:
The text was updated successfully, but these errors were encountered: