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