Simple-Draw/build.gradle

31 lines
689 B
Groovy
Raw Normal View History

2016-02-14 22:04:02 +01:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2020-03-09 19:25:16 +01:00
ext.kotlin_version = '1.3.70'
2017-11-20 16:49:32 +01:00
2016-02-14 22:04:02 +01:00
repositories {
2017-11-20 16:49:32 +01:00
google()
2018-11-04 11:24:17 +01:00
jcenter()
2016-02-14 22:04:02 +01:00
}
2017-11-20 16:49:32 +01:00
2016-02-14 22:04:02 +01:00
dependencies {
2020-03-13 12:03:49 +01:00
classpath 'com.android.tools.build:gradle:3.6.1'
2017-11-20 16:49:32 +01:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2016-02-14 22:04:02 +01:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
2017-11-20 16:49:32 +01:00
google()
2018-11-04 11:24:17 +01:00
jcenter()
2017-10-22 10:19:45 +02:00
maven { url 'https://jitpack.io' }
2016-02-14 22:04:02 +01:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}