-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.gradle
37 lines (34 loc) · 1.05 KB
/
config.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
ext.versions = [
kotlin : "1.4.20",
coreKtx : "1.5.0-alpha05",
fragmentKtx : "1.3.0-beta02",
collectionKtx : "1.1.0",
appcompat : "1.2.0",
material : "1.2.1",
retrofit : "2.9.0",
coil : "0.12.0",
constraintlayout : "2.0.4",
coroutine : "1.3.9",
lifecycle : "2.2.0",
gson : "2.8.6",
junit : "4.13",
androidJunit : "1.1.2",
timber : "4.7.1",
hilt : "2.28-alpha",
hiltViewModel : "1.0.0-alpha02",
security : "1.1.0-alpha03",
loggingInterceptor: "4.9.0",
okHttp : "4.9.0",
]
ext.builds = [
compileSdkVersion: 30,
buildToolsVersion: "30.0.2"
]
ext.packages = [
versionCode: 1,
versionName: "1.0.0",
versionTime: getVersionTime()
]
static String getVersionTime() {
return new Date().format('dd.MM.yyyy HH:mm')
}