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()
|
2017-09-08 00:31:38 +00:00
|
|
|
maven {
|
|
|
|
// For Room Persistence Library
|
|
|
|
url "https://maven.google.com"
|
2017-09-17 00:41:10 +00:00
|
|
|
}
|
|
|
|
maven {
|
|
|
|
url 'http://www.idescout.com/maven/repo/'
|
2017-09-08 00:31:38 +00:00
|
|
|
}
|
2018-04-23 00:27:46 +00:00
|
|
|
maven {
|
|
|
|
url "https://jitpack.io"
|
|
|
|
}
|
2017-11-23 02:57:32 +00:00
|
|
|
google()
|
2017-08-17 21:38:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|