android_terminal/build.gradle
binkybear 30fe7da03b Update gradle, fix building
Signed-off-by: binkybear <binkybear@nethunter.com>
2017-08-31 22:48:01 -05:00

24 lines
541 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
task wrapper (type:Wrapper) {
gradleVersion = '4.1'
distributionUrl = 'https://services.gradle.org/distributions/gradle-4.1-rc-1-all.zip'
}
buildscript {
repositories {
jcenter()
google()
maven {
url "https://maven.google.com"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0-beta3'
}
}
allprojects {
repositories {
jcenter()
}
}