The build script looks for the client library in Maven Central. It is possible
to use a local .aar by placing it in a folder "aars" in the base folder, and
uncommenting the flatDir{} section in the base build.gradle.
18 lines
352 B
Groovy
18 lines
352 B
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:0.12.+'
|
|
classpath files('gradle/libs/gradle-witness.jar')
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
// flatDir {
|
|
// dirs file("${project.rootDir}/aars")
|
|
// }
|
|
mavenCentral()
|
|
}
|
|
} |