forked from mtotschnig/MyExpenses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
72 lines (70 loc) · 1.85 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
compose_compiler_version = '1.1.1'
compose_version = '1.1.1'
kotlin_version = '1.6.10'
}
repositories {
//mavenLocal()
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.1.2'
//Drive
//classpath 'com.google.gms:google-services:4.3.10'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
//mavenLocal()
mavenCentral()
maven {
url "https://jitpack.io"
}
maven {
url "https://clojars.org/repo/"
}
google()
}
}
ext {
versionCode = 515
versionName = '3.3.7'
compileSdkVersion = 31
minSdkVersion = 21
targetSdkVersion = 30
espressoVersion = "3.4.0"
androidSupportTestVersion = "1.4.0"
androidxTextExtJunit = "1.1.3"
daggerVersion = "2.40.2"
okHttpVersion = "4.9.3"
acraVersion = "5.8.4"
butterknifeVersion = "10.2.3"
robolectricVersion = "4.5.1"
roomVersion = "2.4.2"
archLifecycleVersion = '2.4.1'
androidxArchVersion = '2.1.0'
fragmentVersion = "1.4.1"
coroutines = '1.6.0'
mockitoVersion = '3.12.4'
retrofitVersion = "2.9.0"
ktxVersion = "1.7.0"
appcompatVersion = "1.4.1"
picassoVersion = "2.71828"
recyclerview = "1.2.1"
materialComponents = "1.5.0" //currently using patch
junitVersion = "4.13.2"
timberVersion = "5.0.1"
assertjVersion = "3.19.0"
assertjVersionAndroid = "2.9.1"
annotations = "1.3.0"
commonsLang = "3.12.0"
commonsText = "1.9"
ktor = "1.6.7"
desugarVersion = "1.1.5"
mlkitTextRecognition = "16.0.0-beta3"
truthVersion = "1.1.3"
}