You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
650 B

buildscript {
ext {
compileSdkVersion = 27
minSdkVersion = 21
targetSdkVersion = 27
espressoVersion = '3.0.1'
junitVersion = '4.12'
kotlinVersion = '1.3.11'
supportLibVersion = '27.0.2'
supportTestVersion = '1.0.1'
}
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}