antimine-android/build.gradle

27 lines
524 B
Groovy
Raw Normal View History

2020-03-11 02:22:46 +00:00
buildscript {
2020-02-07 01:50:47 +00:00
repositories {
mavenCentral()
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.2'
2020-02-07 01:50:47 +00:00
2020-03-11 02:28:31 +00:00
// NOTE: Do not place your application dependencies here; they belong
2020-02-07 01:50:47 +00:00
// in the individual module build.gradle files
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.71'
2020-03-11 02:22:46 +00:00
}
2020-02-07 01:50:47 +00:00
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}