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 {
|
2021-08-25 10:11:11 +02:00
|
|
|
kotlin_version = '1.5.30'
|
2021-07-09 17:51:49 +02:00
|
|
|
coreVersion = '1.6.0'
|
2021-02-15 09:06:52 +01:00
|
|
|
rxjava_version = '2.2.21'
|
2020-05-03 21:27:42 +02:00
|
|
|
rxandroid_version = '2.1.1'
|
|
|
|
rxkotlin_version = '2.4.0'
|
2021-04-29 22:02:49 +02:00
|
|
|
room_version = '2.3.0'
|
2021-04-15 15:34:18 +02:00
|
|
|
lifecycle_version = '2.3.1'
|
2021-07-28 10:06:19 +02:00
|
|
|
dagger_version = '2.38.1'
|
2021-02-09 17:57:28 +01:00
|
|
|
coroutinesVersion = '1.4.1'
|
2021-08-19 13:33:09 +02:00
|
|
|
activityVersion = '1.3.1'
|
|
|
|
fragmentktx_version = '1.3.6'
|
2020-09-26 19:29:28 +02:00
|
|
|
ormLiteVersion = '4.46'
|
2021-08-19 13:33:09 +02:00
|
|
|
nav_version = '2.3.5'
|
|
|
|
appcompat_version = '1.3.1'
|
|
|
|
material_version = '1.4.0'
|
|
|
|
constraintlayout_version = '2.1.0'
|
2020-10-19 21:51:13 +02:00
|
|
|
preferencektx_version = '1.1.1'
|
|
|
|
commonslang3_version = '3.11'
|
2021-02-11 11:24:31 +01:00
|
|
|
commonscodec_version = '1.15'
|
2021-02-11 18:11:03 +01:00
|
|
|
jodatime_version = '2.10.10'
|
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'
|
2020-10-19 21:51:13 +02:00
|
|
|
|
2021-02-15 09:07:00 +01:00
|
|
|
junit_version = '4.13.2'
|
2021-08-26 10:05:33 +02:00
|
|
|
mockitoVersion = '3.12.4'
|
2021-02-11 20:52:57 +01:00
|
|
|
powermockVersion = '2.0.9'
|
2020-11-29 19:44:45 +01:00
|
|
|
dexmakerVersion = "1.2"
|
|
|
|
retrofit2Version = '2.9.0'
|
|
|
|
okhttp3Version = '4.9.0'
|
2021-08-19 13:33:58 +02:00
|
|
|
byteBuddyVersion = '1.11.13'
|
2020-11-30 08:54:47 +01:00
|
|
|
|
|
|
|
androidx_junit = '1.1.2'
|
2021-02-11 20:54:29 +01:00
|
|
|
androidx_rules = '1.4.0-alpha04'
|
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
|
2021-03-01 13:34:34 +01:00
|
|
|
maven { url "https://dl.bintray.com/kotlin/kotlinx" }
|
2016-06-04 17:28:05 +02:00
|
|
|
}
|
|
|
|
dependencies {
|
2021-09-02 10:13:55 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:7.0.2'
|
2021-08-19 13:33:09 +02:00
|
|
|
classpath 'com.google.gms:google-services:4.3.10'
|
2021-06-24 10:05:42 +02:00
|
|
|
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.7.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'
|
2021-04-15 20:07:42 +02:00
|
|
|
modules {
|
|
|
|
module("org.jetbrains.trove4j:trove4j") {
|
|
|
|
replacedBy("org.jetbrains.intellij.deps:trove4j")
|
|
|
|
}
|
|
|
|
}
|
2016-06-04 17:28:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-01 12:34:47 +01:00
|
|
|
plugins {
|
2021-03-01 13:34:34 +01:00
|
|
|
id "io.gitlab.arturbosch.detekt" version "1.16.0-RC2"
|
2021-07-11 20:11:46 +02:00
|
|
|
id "org.jlleitschuh.gradle.ktlint" version "10.1.0"
|
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' }
|
2018-02-02 20:00:31 +01:00
|
|
|
ivy {
|
|
|
|
url 'https://github.com/'
|
2020-05-04 21:03:30 +02:00
|
|
|
patternLayout {
|
2018-02-02 20:00:31 +01:00
|
|
|
artifact '/[organisation]/[module]/archive/[revision].[ext]'
|
|
|
|
}
|
2018-01-31 21:46:30 +01:00
|
|
|
}
|
2020-11-28 17:26:03 +01:00
|
|
|
maven { url 'https://jitpack.io' }
|
2021-02-10 23:33:32 +01:00
|
|
|
jcenter() {
|
|
|
|
content {
|
|
|
|
includeModule("com.google.android", "flexbox")
|
|
|
|
includeModule("org.jetbrains.trove4j", "trove4j")
|
|
|
|
}
|
|
|
|
}
|
2021-03-01 13:34:34 +01:00
|
|
|
maven { url "https://dl.bintray.com/kotlin/kotlinx" }
|
2016-06-04 17:28:05 +02:00
|
|
|
}
|
2019-12-28 02:53:55 +01:00
|
|
|
//Support @JvmDefault
|
|
|
|
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
|
|
|
|
kotlinOptions {
|
2021-05-18 23:02:40 +02:00
|
|
|
freeCompilerArgs = ['-Xjvm-default=all']
|
2019-12-28 02:53:55 +01:00
|
|
|
jvmTarget = "1.8"
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
|
}
|
|
|
|
}
|