-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathversions.gradle
76 lines (75 loc) · 3.1 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
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
ext.versions = [
'android_gradle' : '3.3.1',
'spotlessPlugin' : '3.16.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.2.0-alpha02',
'constraint_layout': '2.0.0-alpha2',
'cardview' : '1.0.0',
'core_ktx' : '1.0.1',
'fragment' : '1.0.0',
'gridlayout' : '1.0.0',
'emoji' : '1.0.0',
'espresso_core' : '3.1.1',
'espresso_contrib' : '3.1.1',
'espresso_idling' : '3.1.1',
'lifecycle' : '2.0.0',
'multidex' : '2.0.1',
'paging' : '2.0.0',
'palette' : '1.0.0',
'recyclerview' : '1.0.0',
'room' : '2.1.0-alpha04',
'test_core' : '1.1.0',
'test_junit' : '1.0.0',
'test_runner' : '1.1.1',
'test_rules' : '1.1.1',
'test_ext_junit' : '1.1.0',
'test_ext_truth' : '1.1.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.21',
'epoxy' : '3.0.0',
'firebase' : '16.0.4',
'glide' : '4.8.0',
'gson' : '2.8.5',
'kotlin' : '1.3.41',
'junit' : '4.12',
'ktlint' : '0.29.0',
'mockk' : '1.9',
'mockk_android' : '1.9',
'mockito_android' : '2.22.0',
'mockito_core' : '2.23.18',
'mockito_inline' : '2.23.18',
'mockito_kotlin' : '2.1.0',
'mock_web_server' : '3.13.1',
'material_design' : '1.0.0',
'okhttp' : '3.13.1',
'powermock' : '2.0.0',
'retrofit' : '2.5.0',
'retrofit_converter_gson': '2.5.0',
'robolectric' : '4.0.2',
'rxjava' : '2.2.4',
'rxandroid' : '2.0.2',
'rxkotlin' : '2.3.0',
'rxlint' : '1.7.1',
'threetenbp' : '1.3.8',
'threetenabp' : '1.1.1',
'truth' : '0.42',
'stetho' : '1.5.0',
'timber' : '4.7.1'
]
ext.buildConfig = [
'compileSdk': 28,
'minSdk' : 21,
'targetSdk' : 28,
]