Files
i2p.i2p-bote.android/build.gradle
str4d e461e5e3c4 Use the I2P Android client library
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.
2014-07-16 01:45:14 +00:00

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()
}
}