-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.gradle
90 lines (73 loc) · 5.22 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
ext {
android = [
compileSdkVersion: 28,
buildToolsVersion: "28.0.3",
minSdkVersion : 14,
targetSdkVersion : 28,
versionCode : 1,
versionName : "1.0.0"
]
version = [
androidSupportVersion : "28.0.0",
constraintVersion : "1.1.3",
butterknifeVersion : "9.0.0-rc2",
okhttpVersion : "3.12.0",
retrofitVersion : "2.5.0",
rxJavaVersion : "1.3.8",
rxAndroidVersion : "1.2.1",
rxJava2Version : "2.2.3",
rxAndroid2Version : "2.1.0",
arouterVersion : "1.4.1",
arouterCompilerVersion: "1.2.2",
glideVersion : "4.8.0",
pagingVersion : "1.0.0",
roomVersion : "1.1.1",
gsonVersion : "2.8.5",
eventBusVersion : "3.1.1",
timberVersion : "4.7.1",
canaryVersion : "1.6.2"
]
dependencies = [
"appcompat-v7" : "com.android.support:appcompat-v7:${version["androidSupportVersion"]}",
"design" : "com.android.support:design:${version["androidSupportVersion"]}",
"support-v4" : "com.android.support:support-v4:${version["androidSupportVersion"]}",
"cardview-v7" : "com.android.support:cardview-v7:${version["androidSupportVersion"]}",
"annotations" : "com.android.support:support-annotations:${version["androidSupportVersion"]}",
"recyclerview-v7" : "com.android.support:recyclerview-v7:${version["androidSupportVersion"]}",
"palette-v7" : "com.android.support:palette-v7:${version["androidSupportVersion"]}",
"constraint-layout" : "com.android.support.constraint:constraint-layout:${version["constraintVersion"]}",
"butterknife" : "com.jakewharton:butterknife:${version["butterknifeVersion"]}",
"butterknife-compiler" : "com.jakewharton:butterknife-compiler:${version["butterknifeVersion"]}",
"okhttp3" : "com.squareup.okhttp3:okhttp:${version["okhttpVersion"]}",
"retrofit" : "com.squareup.retrofit2:retrofit:${version["retrofitVersion"]}",
"retrofit-converter-gson" : "com.squareup.retrofit2:converter-gson:${version["retrofitVersion"]}",
"retrofit-adapter-rxjava2": "com.squareup.retrofit2:adapter-rxjava2:${version["retrofitVersion"]}",
"retrofit-url-manager" : "me.jessyan:retrofit-url-manager:1.4.0",
"rxjava" : "io.reactivex:rxjava:${version["rxJavaVersion"]}",
"rxandroid" : "io.reactivex:rxandroid:${version["rxAndroidVersion"]}",
"rxjava2" : "io.reactivex.rxjava2:rxjava:${version["rxJava2Version"]}",
"rxandroid2" : "io.reactivex.rxjava2:rxandroid:${version["rxAndroid2Version"]}",
"arouter" : "com.alibaba:arouter-api:${version["arouterVersion"]}",
"arouter-compiler" : "com.alibaba:arouter-compiler:${version["arouterCompilerVersion"]}",
"glide" : "com.github.bumptech.glide:glide:${version["glideVersion"]}",
"glide-compiler" : "com.github.bumptech.glide:compiler:${version["glideVersion"]}",
"glide-recyclerview" : "com.github.bumptech.glide:recyclerview-integration:${version["glideVersion"]}",
"glide-loader-okhttp3" : "com.github.bumptech.glide:okhttp3-integration:${version["glideVersion"]}",
"paging" : "android.arch.paging:runtime:${version["pagingVersion"]}",
"paging-rxjava2" : "android.arch.paging:rxjava2:1.0.0-rc1",
"room" : "android.arch.persistence.room:runtime:${version["roomVersion"]}",
"room-compiler" : "android.arch.persistence.room:compiler:${version["roomVersion"]}",
"room-rxjava2" : "android.arch.persistence.room:rxjava2:${version["roomVersion"]}",
"room-test" : "android.arch.persistence.room:testing:${version["roomVersion"]}",
"gson" : "com.google.code.gson:gson:${version["gsonVersion"]}",
"eventBus" : "org.greenrobot:eventbus:${version["eventBusVersion"]}",
"timber" : "com.jakewharton.timber:timber:${version["timberVersion"]}",
"canary-debug" : "com.squareup.leakcanary:leakcanary-android:${version["canaryVersion"]}",
"canary-release" : "com.squareup.leakcanary:leakcanary-android-no-op:${version["canaryVersion"]}",
"javax.annotation" : "javax.annotation:jsr250-api:1.0",
"junit" : "junit:junit:4.12",
"androidJUnitRunner" : "android.support.test.runner.AndroidJUnitRunner",
"runner" : "com.android.support.test:runner:1.0.2",
"espresso-core" : "com.android.support.test.espresso:espresso-core:3.0.2",
]
}