2017-04-20 18:23:59 +02:00
|
|
|
buildscript {
|
2017-11-04 15:51:15 +01:00
|
|
|
|
2018-01-29 14:27:43 +01:00
|
|
|
ext.kotlin_version = '1.2.21'
|
|
|
|
ext.kotlin_coroutines_version = '0.21.2'
|
2018-01-14 22:47:42 +01:00
|
|
|
ext.anko_version='0.10.4'
|
2017-11-04 15:51:15 +01:00
|
|
|
|
2017-04-20 18:23:59 +02:00
|
|
|
repositories {
|
|
|
|
jcenter()
|
2017-04-23 07:42:09 +02:00
|
|
|
mavenCentral()
|
2017-11-30 15:15:47 +01:00
|
|
|
google()
|
2017-04-20 18:23:59 +02:00
|
|
|
}
|
|
|
|
dependencies {
|
2017-11-30 15:15:47 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:3.0.1'
|
2017-05-24 11:20:56 +02:00
|
|
|
classpath 'com.google.gms:google-services:3.0.0'
|
2017-11-04 15:51:15 +01:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2017-04-20 18:23:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
2017-08-24 13:44:06 +02:00
|
|
|
maven { url 'https://maven.google.com' }
|
|
|
|
maven { url 'https://jitpack.io' }
|
2017-11-30 15:15:47 +01:00
|
|
|
google()
|
2017-04-20 18:23:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|