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
|
2020-09-08 22:17:32 +02:00
|
|
|
ext.target_sdk_version = 30
|
2021-02-25 02:24:08 +01:00
|
|
|
ext.compile_sdk_version = 30
|
2021-05-08 07:56:34 +02:00
|
|
|
|
2021-05-22 00:03:16 +02:00
|
|
|
ext.appcompat_version='1.3.0'
|
2021-05-08 07:56:34 +02:00
|
|
|
ext.lifecycle_version='2.3.1'
|
2018-09-27 16:21:37 +02:00
|
|
|
|
2021-06-28 15:02:46 +02:00
|
|
|
ext.kotlin_version = '1.5.20'
|
2021-05-22 00:03:16 +02:00
|
|
|
ext.kotlinx_coroutines_version = '1.5.0'
|
2018-12-01 00:02:18 +01:00
|
|
|
ext.anko_version='0.10.8'
|
2017-11-04 15:51:15 +01:00
|
|
|
|
2021-05-08 07:56:34 +02:00
|
|
|
ext.junit_version='4.13.2'
|
Android Studio 4.0.0, Android gradple plugin 4.0.1, Gradle 6.1.1, kotlin 1.4.0, espresso-core:3.3.0-rc03, androidx.test:runner:1.3.0-rc03, androidx.appcompat 1.2.0, androidx.core-ktx 1.3.1, androidx.drawerlayout 1.1.0, androidx.preference 1.1.1, com.google.android.material 1.2.0, firebase-messaging 20.2.4, com.google.android:flexbox 2.0.1, junit 4.13
2020-08-23 00:15:27 +02:00
|
|
|
|
2021-08-24 00:57:47 +02:00
|
|
|
ext.detekt_version='1.18.0'
|
2021-06-20 05:02:30 +02:00
|
|
|
|
2017-04-20 18:23:59 +02:00
|
|
|
repositories {
|
2018-09-27 16:21:37 +02:00
|
|
|
google()
|
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 {
|
2021-08-24 00:46:09 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:4.2.2'
|
2021-08-24 00:57:47 +02:00
|
|
|
classpath 'com.google.gms:google-services:4.3.10'
|
2018-05-06 10:09:18 +02:00
|
|
|
|
2021-05-08 07:56:34 +02:00
|
|
|
//noinspection DifferentKotlinGradleVersion
|
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
|
|
|
|
2021-05-05 14:39:00 +02:00
|
|
|
classpath "com.github.bjoernq:unmockplugin:0.7.6"
|
2021-05-22 00:03:16 +02:00
|
|
|
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
|
2021-06-20 05:02:30 +02:00
|
|
|
|
|
|
|
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:$detekt_version"
|
2017-04-20 18:23:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2018-09-27 16:21:37 +02:00
|
|
|
google()
|
2017-08-24 13:44:06 +02:00
|
|
|
maven { url 'https://maven.google.com' }
|
|
|
|
maven { url 'https://jitpack.io' }
|
2021-05-05 14:39:00 +02:00
|
|
|
|
|
|
|
mavenCentral()
|
|
|
|
|
|
|
|
maven { url 'https://dl.bintray.com/google/exoplayer/' }
|
|
|
|
maven { url 'https://dl.bintray.com/google/flexbox-layout/' }
|
2021-06-20 05:02:30 +02:00
|
|
|
|
|
|
|
maven { url "https://plugins.gradle.org/m2/" } // detekt
|
2017-04-20 18:23:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|