forked from mtotschnig/MyExpenses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
63 lines (62 loc) · 1.93 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
compose_compiler_version = '1.5.3'
kotlin_version = '1.9.10'
agp_version = '8.2.0'
}
}
plugins {
id 'com.android.application' version "$agp_version" apply false
id 'com.android.library' version "$agp_version" apply false
id 'org.jetbrains.kotlin.android' version "$kotlin_version" apply false
id 'com.android.dynamic-feature' version "$agp_version" apply false
id("com.google.devtools.ksp") version "$kotlin_version-1.0.13" apply false
//drive
//id 'com.google.gms.google-services' version '4.3.15' apply false
}
ext {
versionCode = 690
versionName = '3.7.1'
compileSdkVersion = 34
minSdkVersion = 21
targetSdkVersion = 34
espressoVersion = "3.5.1"
androidSupportTestVersion = "1.5.0"
androidxTextExtJunit = "1.1.5"
daggerVersion = "2.48.1"
okHttpVersion = "4.11.0"
acraVersion = "5.11.3"
robolectricVersion = '4.10'
roomVersion = "2.6.1"
archLifecycleVersion = '2.6.2'
androidxArchVersion = '2.2.0'
fragmentVersion = "1.6.2"
coroutines = '1.7.3'
mockitoVersion = '5.4.0'
retrofitVersion = "2.10.0-SNAPSHOT"
androidXCoreVersion = "1.12.0"
appcompatVersion = "1.6.1"
picassoVersion = "2.8"
recyclerview = "1.3.2"
materialComponents = "1.11.0"
junitVersion = "4.13.2"
timberVersion = "5.0.1"
assertjVersion = "3.19.0"
assertjVersionAndroid = "2.9.1"
annotations = "1.7.0"
commonsLang = "3.12.0"
commonsText = "1.9"
ktor = '2.3.2'
bouncycastle = "1.71"
desugarVersion = '2.0.3'
mlkitTextRecognition = "16.0.0"
truthVersion = "1.1.3"
accompanist = "0.30.1"
requery = "3.36.0"
androidxSqlite = "2.4.0"
barista = "4.3.0"
googleHttp = "1.43.3"
composeBom = "androidx.compose:compose-bom:2023.06.01"
activityCompose = "1.8.2"
}