| Add a dependency management section to the android SDK (https://github.com/aerogear/aerogear-android-sdk) refrerring to the BOM in aerogear-parent. You need to add the following statements to the parent projects build.gradle:
... |
plugins { |
id "io.spring.dependency-management" version "1.0.4.RELEASE" |
} |
... |
subprojects { |
apply plugin: 'io.spring.dependency-management' |
|
dependencyManagement { |
imports { |
mavenBom '<group:artifact:version of the android BOM>' |
} |
} |
}
|
|