2018-07-27 13:07:33 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2018-12-25 14:58:47 +00:00
|
|
|
ext.kotlin_version = '1.3.11'
|
2018-09-09 19:44:46 +00:00
|
|
|
ext {
|
2018-11-13 03:30:08 +00:00
|
|
|
supportLibVersion = '1.0.0'
|
2018-09-09 19:44:46 +00:00
|
|
|
firebase = "11.8.0"
|
|
|
|
retrofit = "2.3.0"
|
|
|
|
materialDialog = "0.9.6.0"
|
|
|
|
}
|
2018-07-27 13:07:33 +00:00
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
google()
|
|
|
|
}
|
|
|
|
dependencies {
|
2018-12-25 14:58:47 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:3.4.0-alpha08'
|
2018-12-12 21:27:37 +00:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2018-07-27 13:07:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
maven { url "https://jitpack.io" }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|