2017-04-21 01:23:59 +09:00
|
|
|
buildscript {
|
2017-11-04 23:51:15 +09:00
|
|
|
|
2018-09-12 14:55:15 +09:00
|
|
|
ext.min_sdk_version = 21
|
2019-08-31 23:33:13 +09:00
|
|
|
ext.target_sdk_version = 29
|
2019-09-12 22:43:11 +09:00
|
|
|
ext.appcompat_version='1.1.0'
|
2018-09-27 23:21:37 +09:00
|
|
|
|
2020-02-05 17:18:28 +09:00
|
|
|
ext.kotlin_version = '1.3.61'
|
2019-09-13 00:13:00 +09:00
|
|
|
ext.kotlinx_coroutines_version = '1.3.1'
|
2018-12-01 08:02:18 +09:00
|
|
|
ext.anko_version='0.10.8'
|
2017-11-04 23:51:15 +09:00
|
|
|
|
2017-04-21 01:23:59 +09:00
|
|
|
repositories {
|
2018-09-27 23:21:37 +09:00
|
|
|
google()
|
2017-04-21 01:23:59 +09:00
|
|
|
jcenter()
|
2017-04-23 14:42:09 +09:00
|
|
|
mavenCentral()
|
2017-04-21 01:23:59 +09:00
|
|
|
}
|
2018-09-12 14:55:15 +09:00
|
|
|
|
2017-04-21 01:23:59 +09:00
|
|
|
dependencies {
|
2020-02-05 17:18:28 +09:00
|
|
|
classpath 'com.android.tools.build:gradle:3.5.3'
|
2019-12-02 11:06:51 +09:00
|
|
|
classpath 'com.google.gms:google-services:4.3.3'
|
2018-05-06 17:09:18 +09:00
|
|
|
|
2017-11-04 23:51:15 +09:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2019-10-07 05:46:56 +09:00
|
|
|
|
|
|
|
classpath 'de.mobilej.unmock:UnMockPlugin:0.7.3'
|
2017-04-21 01:23:59 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2018-09-27 23:21:37 +09:00
|
|
|
google()
|
2017-04-21 01:23:59 +09:00
|
|
|
jcenter()
|
2017-08-24 20:44:06 +09:00
|
|
|
maven { url 'https://maven.google.com' }
|
|
|
|
maven { url 'https://jitpack.io' }
|
2017-04-21 01:23:59 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|