2017-08-17 21:38:05 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2018-11-29 16:33:42 +00:00
|
|
|
ext.kotlin_version = '1.3.0'
|
2017-08-17 21:38:05 +00:00
|
|
|
repositories {
|
|
|
|
jcenter()
|
2017-11-23 02:57:32 +00:00
|
|
|
google()
|
2017-08-17 21:38:05 +00:00
|
|
|
}
|
|
|
|
dependencies {
|
2018-11-29 16:33:42 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:3.2.1'
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2017-08-17 21:38:05 +00:00
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
2018-11-29 18:20:25 +00:00
|
|
|
maven { url "https://maven.google.com" }
|
|
|
|
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
|
|
|
|
maven { url 'http://www.idescout.com/maven/repo/' }
|
2017-11-23 02:57:32 +00:00
|
|
|
google()
|
2017-08-17 21:38:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|