android_terminal/build.gradle
binkybear 91cfe012b9 Two rows function bar, update gradle
Need to add keyboard paste function per @jcaduono.

https://github.com/binkybear/Android-Terminal-Emulator/issues/5
Signed-off-by: binkybear <binkybear@nethunter.com>
2016-10-06 20:57:58 -05:00

31 lines
770 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
task wrapper (type:Wrapper) {
gradleVersion = '2.2.1'
distributionUrl = 'https://services.gradle.org/distributions/gradle-2.2.1-all.zip'
}
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.0'
classpath 'com.jakewharton.sdkmanager:gradle-plugin:0.12.0'
}
}
allprojects {
repositories {
jcenter()
}
}
subprojects {
def androidHome
if ((androidHome = System.env.'ANDROID_HOME')
&& (androidHome = androidHome as File).exists()
&& androidHome.canWrite())
apply plugin: 'android-sdk-manager'
}