-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.gradle
57 lines (40 loc) · 1.21 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
ext {
config = [
minSdkVersion : 21,
compileSdkVersion: 30,
buildToolsVersion: '30.0.0',
applicationId : 'com.sample.gallery',
versionCode : 1,
versionName : '1.0',
apiUrl: 'https://api.imgur.com/3/',
]
versions = [
kotlin: '1.4.0',
androidGradle: '4.2.0-alpha09',
appCompat: '1.2.0',
coreKtx: '1.3.1',
fragmentKtx: '1.2.5',
recyclerView: '1.2.0-alpha05',
constraintLayout: '2.0.1',
lifecycle: '2.2.0',
navigation: '2.3.0',
glide: '4.11.0',
lottie: '3.4.0',
paging: '3.0.0-alpha05',
room: '2.2.5',
retrofit: '2.9.0',
okHttp: '4.7.2',
coroutinesAndroid: '1.3.9',
moshi: '1.9.2',
googleMaterial: '1.2.0',
fab: '1.6.4',
timber: '4.7.1',
hilt: '2.28.3-alpha',
hiltViewModel: '1.0.0-alpha02',
junit: '4.13',
mockk: '1.10.0',
archCore: '2.1.0',
androidJunit: '1.1.2',
espressoCore: '3.3.0'
]
}