-
-
Notifications
You must be signed in to change notification settings - Fork 243
/
Copy pathdependencies.gradle
104 lines (84 loc) · 2.58 KB
/
dependencies.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*
* Copyright 2020 Shreyas Patil
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
ext {
// Java Version
javaVersion = "17"
// Android Plugin
androidGradlePluginVersion = '8.1.1'
// Compose compiler report generator plugin
composeCompilerReportGenVersion = "1.3.1"
// Kotlin
kotlinVersion = "1.8.22"
kspVersion = "$kotlinVersion-1.0.11"
ktlintVersion = "11.5.0"
coroutinesVersion = '1.7.3'
koverVersion = "0.6.1"
jacocoVersion = "0.8.10"
// Android
appcompatVersion = '1.6.1'
coreKtxVersion = '1.10.1'
constraintlayoutVersion = "2.1.4"
swipeRefreshLayoutVersion = "1.1.0"
recyclerViewVersion = "1.2.1"
workmanagerVersion = '2.8.1'
lifecycleVersion = "2.6.1"
navigationVersion = '2.6.0'
securityCryptoVersion = '1.1.0-alpha06'
roomVersion = '2.5.2'
dataStoreVersion = '1.0.0'
legacySupportVersion = "1.0.0"
capturableVersion = "1.0.3"
// Activity & Fragment
activityVersion = '1.7.2'
fragmentVersion = '1.6.0'
// Design
materialDesignVersion = '1.9.0'
// Lottie Animation
lottieVersion = '6.1.0'
// Lottie Animation (Compose)
lottieComposeVersion = '6.1.0'
// DI
daggerHiltVersion = '2.44.2'
jetpackHiltVersion = "1.0.0"
// Networking
retrofitVersion = "2.9.0"
okHttpVersion = "4.11.0"
// Moshi
moshiVersion = '1.15.0'
// Other utility
mutektVersion = "1.0.1"
leakCanaryVersion = "2.8.1"
javaxInjectVersion = "1"
// Jetpack Compose
composeBomVersion = "2023.06.01"
composeCompilerVersion = '1.4.8'
// Constrain Layout (Compose)
composeConstraintLayoutVersion = "1.0.1"
// Jetpack Compose Navigation
composeNavVersion = '2.6.0'
// Hilt Compose Navigation
hiltComposeNavVersion = "1.0.0"
// Accompanist
accompanistVersion = '0.28.0'
// Testing
jUnitVersion = "4.13.2"
kotestVersion = '5.6.2'
mockkVersion = '1.13.8'
androidTestCoreVersion = "1.5.0"
androidTestRunnerVersion = "1.5.2"
androidJUnitVersion = '1.1.5'
espressoVersion = '3.5.1'
}