You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you have a gradle multi-project that includes both the android plugin 3.2.1 and the latest aws plugin, there is a incompatibility with the versions of guava, and the commons-logging library. To fix it you can this to the buildscript section:
configurations.all {
resolutionStrategy {
force "com.google.guava:guava:23.0"
force "commons-logging:commons-logging:1.2"
force "commons-io:commons-io:2.4"
}
}
But it might be better to ensure the aws plugin uses more up-to-date versions of these libraries.
The text was updated successfully, but these errors were encountered:
If you have a gradle multi-project that includes both the android plugin 3.2.1 and the latest aws plugin, there is a incompatibility with the versions of guava, and the commons-logging library. To fix it you can this to the buildscript section:
But it might be better to ensure the aws plugin uses more up-to-date versions of these libraries.
The text was updated successfully, but these errors were encountered: