-
Notifications
You must be signed in to change notification settings - Fork 2
/
dependencies.gradle
77 lines (76 loc) · 3.21 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
66
67
68
69
70
71
72
73
74
75
76
77
ext.versions = [
'android_gradle' : '3.3.1',
'spotlessPlugin' : '3.24.0',
'versionPlugin' : '0.20.0',
'androidx' : [
'annotation' : '1.0.1',
'appcompat' : '1.0.2',
'arch_core_testing': '2.0.0',
'browser' : '1.0.0',
'core' : '1.1.0-alpha04',
'constraint_layout': '2.0.0-beta2',
'cardview' : '1.0.0',
'core_ktx' : '1.2.0-alpha03',
'fragment' : '1.0.0',
'fragment_ktx' : '1.2.0-alpha02',
'gridlayout' : '1.0.0',
'emoji' : '1.0.0',
'espresso_core' : '3.2.0',
'espresso_contrib' : '3.1.1',
'lifecycle' : '2.0.0',
'multidex' : '2.0.1',
'navigation_ktx' : '2.2.0-alpha01',
'paging_ktx' : '2.1.0',
'palette' : '1.0.0',
'recyclerview' : '1.0.0',
'room' : '2.1.0-alpha04',
'test_core' : '1.2.0',
'test_junit' : '1.0.0',
'test_runner' : '1.2.0',
'test_rules' : '1.2.0',
'test_ext_junit' : '1.1.1',
'test_ext_truth' : '1.2.0',
'work' : '1.0.0-alpha09',
],
'anko' : '0.10.8',
'assistedinject' : '0.3.2',
'butterknife' : '10.0.0',
'coroutines' : '0.30.2-eap13',
'coroutines_core' : '1.0.0',
'coroutines_android' : '1.0.0',
'dagger' : '2.24',
'epoxy' : '3.0.0',
'junit' : '4.12',
'firebase' : '16.0.4',
'glide' : '4.8.0',
'gson' : '2.8.5',
'kotlin' : '1.3.41',
'ktlint' : '0.29.0',
'material_design' : '1.0.0',
'mockito' : '2.18.3',
'mockito_core' : '2.23.16',
'mockito_inline' : '2.23.16',
'mockito_android' : '2.22.0',
'mockito_kotlin' : '2.1.0',
'mock_web_server' : '3.12.1',
'mockk' : '1.9.3',
'okhttp3_logging' : '3.12.1',
'rxjava' : '2.2.8',
'rxandroid' : '2.1.1',
'rxkotlin' : '2.3.0',
'rxlint' : '1.7.1',
'retrofit' : '2.6.0',
'retrofit_adapter_rxjava2': '2.6.0',
'retrofit_converter_gson' : '2.6.0',
'robolectric' : '4.0.2',
'stetho' : '1.5.0',
'timber' : '4.7.1',
'threetenbp' : '1.3.8',
'threetenabp' : '1.1.1',
'truth' : '0.42'
]
ext.buildConfig = [
'compileSdk': 28,
'minSdk' : 21,
'targetSdk' : 28,
]