forked from icrc/psm-mobile-app
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdependencies.gradle
65 lines (54 loc) · 1.89 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
// Define desired app id
ext.appConfig = [
applicationId : "",
serverUrl : '""'
]
// Define dependency versions
ext.versions = [
// SDK and Tools
gradle_plugin : '7.0.4',
kotlin_gradle_plugin : '1.6.0',
hilt_gradle_plugin : '2.40',
// Changed from 19 to 24 to support 'androidx.security.identity.credential'
minSdk : 24,
targetSdk : 30,
compileSdk : 31,
versionCode : 10,
versionName : '1.0.7',
// android
lifecycle : '2.4.1',
annotation : '1.3.0',
appcompat : '1.4.1',
material : '1.6.0',
constraintlayout : '2.1.4',
preference_ktx : '1.2.0',
legacy_support_v4 : '1.0.0',
desugar_jdk_libs : '1.1.5',
room : '2.4.2',
workmanager : '2.7.1',
openid : '0.8.1',
// DI
hilt : '2.41',
hilt_work : '1.0.0',
// DHIS2
dhis_core : '1.5.3',
dhis_rules_engine : '2.0.36',
// Rx
rxjava : '2.2.21',
rxrelay : '2.1.1',
// ZXing
zxing_android_embedded : '4.3.0',
// debugging & logging
timber : '5.0.1',
customactivityoncrash : '2.3.0',
// testing
android_core_testing : '2.1.0',
junit : '4.13.2',
mockito_kotlin : '4.0.0',
javafaker : '1.0.2',
junit_ext : '1.1.3',
espresso_core : '3.4.0',
// debugging
flipper : '0.136.0',
soloader : '0.10.3'
]