-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversions.gradle
36 lines (33 loc) · 1.17 KB
/
versions.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
ext {
kotlinVersion = '1.5.31'
gradleVersion = '4.2.0'
androidVersion = [
minSdkVersion : 23,
targetSdkVersion : 31,
compileSdkVersion : 31,
buildToolsVersion : "30.0.2",
versionName : '1.0',
versionCode : 1,
applicationId : "com.pro8l3m.memescreator"
]
libVersion = [
supportLibrary : '1.0.0',
coroutines : '1.5.1',
compose : '1.0.5',
composeNav : '2.4.0-beta02',
hilt : '2.38.1',
dataStore : '1.0.0',
activityCompose : '1.4.0',
coreKtx : '1.7.0',
appCompat : '1.4.0',
material : '1.4.0',
ktxLifecycle : '2.4.0',
junit : '4.13.2',
junitExt : '1.1.3',
espresso : '3.4.0',
retrofit : '2.9.0',
loggingInterceptor : '4.9.1',
moshi : '1.12.0',
coil : '1.4.0'
]
}