-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstants.gradle
107 lines (88 loc) · 2.79 KB
/
constants.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
105
106
107
ext {
/* Application ID */
itemFinderApplicationId = 'com.yapp.itemfinder'
/* Empty String */
EMPTY_STRING = "\"\""
/* Operating System */
OS_ANDROID = "android"
/* Build Types */
BUILD_DEBUG = "debug"
BUILD_RELEASE = "release"
/* Module */
moduleCompileSdkVersion = 33
moduleMinSdkVersion = 24
/* Gradle */
gradleVersion = '7.3.1'
/* Kotlin */
kotlinVersion = '1.7.10'
/* Coroutines */
coroutinesVersion = '1.6.1'
coroutinesTestObserverVersion = '1.6.2'
/* Google Play Services */
googlePlayCore = '1.10.3'
googlePlayServiceAuthVersion = '19.0.0'
googlePlayServiceAuthApiPhone = '17.5.1'
googlePlayServiceOssLicensesVersion = '17.0.0'
googleServicePluginVersion = '4.3.10'
googleOssLicensesPluginVersion = '0.10.5'
/* Firebase */
firebaseCrashlyticsVersion = '18.3.2'
firebaseCrashlyticsGradleVersion = '2.9.4'
firebaseVersion = '4.3.15'
firebaseBomVersion = '31.2.0'
/* Test */
junit5Version = '5.8.2'
junitVersion = '4.13.2'
mockitoVersion = '3.8.0'
mockitoKotlinVersion = '2.2.0'
androidxTestCoreVersion = '1.4.0'
androidxTestTruthVersion = '1.4.0'
androidxTestJUnitVersion = '1.1.3'
espressoVersion = '3.4.0'
runnerRuleVersion = '1.3.0'
mockkVersion = '1.11.0'
turbinVersion = '0.8.0'
/* DI */
hiltVersion = '2.44.2'
hiltAndroidXCompilerVersion = '1.0.0'
/* AndroidX */
androidxArchCoreVersion = '2.1.0'
androidxRecyclerViewVersion = '1.1.0'
androidxCardViewVersion = '1.0.0'
androidxAppCompatVersion = '1.2.0'
androidxConstraintLayoutVersion = '2.1.3'
androidxBrowserVersion = '1.4.0'
androidxAnnotationVersion = '1.3.0'
androidxPreferenceVersion = '1.1.1'
androidxMultiDexVersion = '2.0.1'
androidxBiometricVersion = '1.1.0'
androidxLifecycleVersion = '2.4.1'
androidxRecyclerViewSelectionVersion = '1.1.0'
androidxSecurityCryptoVersion = '1.0.0'
androidxCoordinatorlayout = '1.2.0'
androidxSwiperefreshlayout = '1.1.0'
androidxCoreVersion = '1.9.0'
androidxFragmentVersion = '1.5.4'
androidLifecycleRuntimeVersion = '2.4.1'
androidWorkManagerVersion = '1.0.0'
androidWorkRuntimeVersion = '2.7.0'
androidxStartupVersion = '1.1.1'
androidLifeCycleViewModelKTXVersion = '2.5.1'
androidxActivityTTXVersion = '1.6.1'
androidCoreSplashScreenVersion = '1.0.0'
/* Image */
glideVersion = '4.12.0'
/* Theme */
materialVersion = '1.8.0'
/* Network */
okHttpVersion = '4.9.3'
retrofitVersion = '2.9.0'
gsonVersion = '2.8.9'
/* Kakako */
kakaoUserVersion = '2.12.0'
/*Ted ImagePicer */
tedImagePickerVersion = '1.4.2'
/* License Plugin */
licensePluginVersion = '0.10.6'
ossLicenseVersion = '17.0.0'
}