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