2016-06-04 17:28:05 +02:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2020-05-03 21:27:42 +02:00
|
|
|
ext {
|
2022-04-04 10:11:44 +02:00
|
|
|
kotlin_version = '1.6.20'
|
2022-02-24 21:25:06 +01:00
|
|
|
core_version = '1.7.0'
|
2022-03-22 09:09:43 +01:00
|
|
|
rxjava_version = '3.1.4'
|
2022-02-10 19:11:58 +01:00
|
|
|
rxandroid_version = '3.0.0'
|
|
|
|
rxkotlin_version = '3.0.1'
|
2022-02-24 21:25:06 +01:00
|
|
|
room_version = '2.4.2'
|
2022-04-07 15:57:48 +02:00
|
|
|
lifecycle_version = '2.4.1'
|
2022-02-17 09:08:25 +01:00
|
|
|
dagger_version = '2.41'
|
2022-02-10 17:13:42 +01:00
|
|
|
coroutines_version = '1.4.1'
|
|
|
|
activity_version = '1.3.1'
|
2021-08-19 13:33:09 +02:00
|
|
|
fragmentktx_version = '1.3.6'
|
2022-02-10 17:13:42 +01:00
|
|
|
ormLite_version = '4.46'
|
2021-08-19 13:33:09 +02:00
|
|
|
nav_version = '2.3.5'
|
2022-02-24 21:25:06 +01:00
|
|
|
appcompat_version = '1.4.1'
|
2021-08-19 13:33:09 +02:00
|
|
|
material_version = '1.4.0'
|
|
|
|
constraintlayout_version = '2.1.0'
|
2022-02-24 21:25:06 +01:00
|
|
|
preferencektx_version = '1.2.0'
|
2020-10-19 21:51:13 +02:00
|
|
|
commonslang3_version = '3.11'
|
2021-02-11 11:24:31 +01:00
|
|
|
commonscodec_version = '1.15'
|
2022-03-21 09:11:35 +01:00
|
|
|
jodatime_version = '2.10.14'
|
2021-01-30 22:34:05 +01:00
|
|
|
work_version = '2.5.0'
|
2021-02-28 19:11:42 +01:00
|
|
|
tink_version = '1.5.0'
|
2022-04-07 12:28:50 +02:00
|
|
|
json_version = '20220320'
|
2020-10-19 21:51:13 +02:00
|
|
|
|
2021-02-15 09:07:00 +01:00
|
|
|
junit_version = '4.13.2'
|
2022-03-13 19:34:07 +01:00
|
|
|
mockito_version = '4.4.0'
|
2022-02-10 17:13:42 +01:00
|
|
|
dexmaker_version = "1.2"
|
|
|
|
retrofit2_version = '2.9.0'
|
|
|
|
okhttp3_version = '4.9.0'
|
2022-02-24 21:25:06 +01:00
|
|
|
byteBuddy_version = '1.12.8'
|
2020-11-30 08:54:47 +01:00
|
|
|
|
2022-02-10 17:13:42 +01:00
|
|
|
androidx_junit_version = '1.1.2'
|
|
|
|
androidx_rules_version = '1.4.0'
|
2020-05-03 21:27:42 +02:00
|
|
|
}
|
2016-06-04 17:28:05 +02:00
|
|
|
repositories {
|
2017-12-03 21:31:06 +01:00
|
|
|
google()
|
2021-02-10 23:33:32 +01:00
|
|
|
mavenCentral()
|
2021-02-18 08:15:42 +01:00
|
|
|
maven { url "https://plugins.gradle.org/m2/" } // jacoco 0.2
|
2016-06-04 17:28:05 +02:00
|
|
|
}
|
|
|
|
dependencies {
|
2022-04-11 11:49:28 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:7.1.3'
|
2021-08-19 13:33:09 +02:00
|
|
|
classpath 'com.google.gms:google-services:4.3.10'
|
2021-12-02 09:52:01 +01:00
|
|
|
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.8.1'
|
2016-06-04 17:28:05 +02:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
2018-01-24 21:54:24 +01:00
|
|
|
|
2019-04-10 00:33:05 +02:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2021-03-14 19:42:02 +01:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-allopen:$kotlin_version"
|
2021-02-18 08:15:42 +01:00
|
|
|
classpath 'com.hiya:jacoco-android:0.2'
|
2016-06-04 17:28:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-01 12:34:47 +01:00
|
|
|
plugins {
|
2021-11-30 09:07:17 +01:00
|
|
|
id "io.gitlab.arturbosch.detekt" version "1.19.0"
|
2021-12-28 09:06:49 +01:00
|
|
|
id "org.jlleitschuh.gradle.ktlint" version "10.2.1"
|
2022-02-09 22:45:05 +01:00
|
|
|
id 'org.barfuin.gradle.jacocolog' version '2.0.0'
|
2022-04-04 10:12:24 +02:00
|
|
|
id 'org.jetbrains.kotlin.android' version '1.6.20' apply false
|
2021-03-01 12:34:47 +01:00
|
|
|
}
|
|
|
|
|
2016-06-04 17:28:05 +02:00
|
|
|
allprojects {
|
|
|
|
repositories {
|
2018-02-21 15:07:01 +01:00
|
|
|
google()
|
2021-02-10 23:33:32 +01:00
|
|
|
mavenCentral()
|
2021-04-15 20:07:42 +02:00
|
|
|
maven { url "https://maven.google.com" }
|
|
|
|
maven { url 'https://jitpack.io' }
|
2016-06-04 17:28:05 +02:00
|
|
|
}
|
2019-12-28 02:53:55 +01:00
|
|
|
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
|
|
|
|
kotlinOptions {
|
2021-10-01 23:17:24 +02:00
|
|
|
freeCompilerArgs = [
|
|
|
|
// Ignore warning for @ExperimentalCoroutinesApi
|
|
|
|
"-Xuse-experimental=kotlinx.coroutines.ExperimentalCoroutinesApi",
|
|
|
|
'-Xjvm-default=all' //Support @JvmDefault
|
|
|
|
]
|
2021-10-14 15:21:31 +02:00
|
|
|
jvmTarget = "11"
|
2019-12-28 02:53:55 +01:00
|
|
|
}
|
|
|
|
}
|
2016-06-04 17:28:05 +02:00
|
|
|
}
|
|
|
|
|
2022-02-09 22:45:05 +01:00
|
|
|
apply from: 'gradle/jacoco_project.gradle'
|
|
|
|
|
2016-06-04 17:28:05 +02:00
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|
2020-05-24 19:07:26 +02:00
|
|
|
|
|
|
|
subprojects {
|
|
|
|
tasks.withType(Test) {
|
|
|
|
maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
|
|
|
|
}
|
|
|
|
}
|