forked from mtotschnig/MyExpenses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
73 lines (71 loc) · 2.22 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
64
65
66
67
68
69
70
71
72
73
// 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.1.1'
}
}
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 = 648
versionName = '3.6.4'
compileSdkVersion = 34
minSdkVersion = 21
targetSdkVersion = 33
espressoVersion = "3.5.1"
androidSupportTestVersion = "1.5.0"
androidxTextExtJunit = "1.1.5"
daggerVersion = "2.46"
okHttpVersion = "4.11.0"
acraVersion = "5.9.7"
robolectricVersion = '4.10'
roomVersion = "2.5.2"
archLifecycleVersion = '2.6.2'
androidxArchVersion = '2.2.0'
fragmentVersion = "1.6.1"
coroutines = '1.7.1'
mockitoVersion = '5.4.0'
retrofitVersion = "2.10.0-SNAPSHOT"
ktxVersion = "1.12.0"
appcompatVersion = "1.6.1"
picassoVersion = "2.8"
recyclerview = "1.3.1"
materialComponents = "1.9.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.3.1"
barista = "4.3.0"
googleHttp = "1.43.3"
composeBom = "androidx.compose:compose-bom:2023.06.01"
activityCompose = "1.7.2"
}
allprojects {
configurations.configureEach {
resolutionStrategy {
dependencySubstitution {
substitute module('com.google.android.material:material') using module('com.github.mtotschnig:material-components-android:release-1.9-patched-SNAPSHOT')
}
}
}
}