EtchDroid/build.gradle

30 lines
693 B
Groovy
Raw Permalink Normal View History

2018-08-12 14:33:11 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2019-02-07 18:47:22 +00:00
ext.kotlin_version = '1.3.20'
2018-08-12 14:33:11 +00:00
repositories {
jcenter()
google()
maven { url "https://jitpack.io" }
2018-08-12 14:33:11 +00:00
}
dependencies {
2019-02-07 18:47:22 +00:00
classpath 'com.android.tools.build:gradle:3.3.1'
2018-08-12 14:33:11 +00:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// For libaums
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
2018-08-12 14:33:11 +00:00
}
}
allprojects {
repositories {
jcenter()
google()
maven { url "https://jitpack.io" }
2018-08-12 14:33:11 +00:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
2018-09-02 16:48:27 +00:00
}