-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependencies.gradle
More file actions
50 lines (43 loc) · 2.27 KB
/
Copy pathdependencies.gradle
File metadata and controls
50 lines (43 loc) · 2.27 KB
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
ext {
sdkVersion = 27
supportLibVersion = '27.1.1'
support = [
appcompat_v7 : "com.android.support:appcompat-v7:${supportLibVersion}",
constraint_layout: 'com.android.support.constraint:constraint-layout:1.1.3',
design : "com.android.support:design:${supportLibVersion}",
preference_v7 : "com.android.support:preference-v7:${supportLibVersion}",
recyclerview : "com.android.support:recyclerview-v7:${supportLibVersion}",
cardview : "com.android.support:cardview-v7:${supportLibVersion}",
test_runner : 'com.android.support.test:runner:1.0.2',
espresso_core : 'com.android.support.test.espresso:espresso-core:3.0.2',
palette_v7 : "com.android.support:palette-v7:${supportLibVersion}"
]
leakcanary = '1.6.3'
squareup = [
picasso : 'com.squareup.picasso:picasso:2.5.2',
retrofit2 : 'com.squareup.retrofit2:retrofit:2.4.0',
okhttp3 : 'com.squareup.okhttp3:okhttp:3.11.0',
gson_converter : 'com.squareup.retrofit2:converter-gson:2.4.0',
leakcanary_debug : "com.squareup.leakcanary:leakcanary-android:$leakcanary",
leakcanary_release: "com.squareup.leakcanary:leakcanary-android-no-op:$leakcanary"
]
architecture_component = [
extensions : 'android.arch.lifecycle:extensions:1.1.1',
room : 'android.arch.persistence.room:runtime:1.0.0',
room_compiler : 'android.arch.persistence.room:compiler:1.0.0',
lifecycle_compiler: 'android.arch.lifecycle:compiler:1.1.0',
paging : 'android.arch.paging:runtime:1.0.0'
]
google = [
gson: 'com.google.code.gson:gson:2.8.5'
]
parceler = '1.1.12'
butterknife = '8.8.1'
thirdparty = [
parceler : "org.parceler:parceler-api:$parceler",
parceler_compiler : "org.parceler:parceler:$parceler",
butterknife : "com.jakewharton:butterknife:$butterknife",
butterknife_compiler: "com.jakewharton:butterknife-compiler:$butterknife",
styleabletoast : 'com.muddzdev:styleabletoast:2.1.2'
]
}