1. Binary integration
Last updated
Was this helpful?
Was this helpful?
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven { url 'https://developer.huawei.com/repo/' }
flatDir { dirs "$rootDir/dependencies" }
}
}allprojects {
repositories {
google()
mavenCentral()
maven { url 'https://developer.huawei.com/repo/' }
flatDir { dirs "${rootProject.projectDir}/dependencies" }
}
}