I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
build.gradle 527 B
buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.12.1'
        classpath files('gradle/libs/gradle-witness.jar')
    }
}

if (hasProperty('localFileRepoDir')) {
    allprojects {
        repositories {
            flatDir {
                name "fileRepo"
                dirs file(localFileRepoDir)
            }
        }
    }
}

allprojects {
    version = VERSION_NAME
    group = GROUP

    repositories {
        mavenCentral()
    }
}