Make it easier to use a local copy/build of the client library

This commit is contained in:
str4d
2014-08-15 01:49:45 +00:00
parent 550525bc70
commit b7d10122ba
2 changed files with 17 additions and 4 deletions

View File

@@ -8,11 +8,18 @@ buildscript {
}
}
if (hasProperty('localFileRepoDir')) {
allprojects {
repositories {
flatDir {
dirs file(localFileRepoDir)
}
}
}
}
allprojects {
repositories {
// flatDir {
// dirs file("${project.rootDir}/aars")
// }
mavenCentral()
}
}
}