gradle-aws-plugin icon indicating copy to clipboard operation
gradle-aws-plugin copied to clipboard

plugin incompatible with android gradle plugin 3.2.1

Open wizofaus opened this issue 6 years ago • 0 comments
trafficstars

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.

wizofaus avatar Dec 04 '18 07:12 wizofaus