2014-07-24 02:15:11 +02:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2018-10-11 17:39:45 +02:00
|
|
|
ext.kotlin_version = '1.2.71'
|
2014-07-24 02:15:11 +02:00
|
|
|
repositories {
|
2018-10-11 17:39:45 +02:00
|
|
|
google()
|
2014-07-24 02:15:11 +02:00
|
|
|
jcenter()
|
2015-05-17 18:08:59 +02:00
|
|
|
mavenCentral()
|
2014-07-24 02:15:11 +02:00
|
|
|
}
|
|
|
|
dependencies {
|
2018-10-25 13:03:58 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:3.2.1'
|
2017-07-25 18:21:19 +02:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2014-07-24 02:15:11 +02:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2018-10-11 17:39:45 +02:00
|
|
|
google()
|
2014-07-24 02:15:11 +02:00
|
|
|
jcenter()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
}
|