forked from limedroid/XDroidMvp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conf.gradle
50 lines (42 loc) · 2.9 KB
/
conf.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
ext {
android = [
compileSdkVersion: 23,
buildToolsVersion: "23.0.2",
minSdkVersion : 15,
targetSdkVersion : 23,
versionCode : 1,
versionName : '1.0.0',
VSupportSdk : '23.3.0',
VRetrofitSdk : "2.2.0",
VOkhttp : "3.4.2",
VRxlifecycle : "2.0.1"
]
dependencies = [
"appcompat-v7" : "com.android.support:appcompat-v7:${android["VSupportSdk"]}",
"support-v4" : "com.android.support:support-v4:${android["VSupportSdk"]}",
"design" : "com.android.support:design:${android["VSupportSdk"]}",
"annotations" : "com.android.support:support-annotations:${android["VSupportSdk"]}",
"recyclerview-v7" : "com.android.support:recyclerview-v7:${android["VSupportSdk"]}",
"butterknife" : "com.jakewharton:butterknife:8.4.0",
"butterknife-apt" : "com.jakewharton:butterknife-compiler:8.4.0",
"eventbus" : "org.greenrobot:eventbus:3.0.0",
"glide" : "com.github.bumptech.glide:glide:3.7.0",
"picasso" : "com.squareup.picasso:picasso:2.5.2",
"xrecyclerview" : "com.github.limedroid:ARecyclerView:v1.1.5",
"avi-loading" : "com.wang.avi:library:1.0.2",
"gson" : "com.google.code.gson:gson:2.6.2",
"rxandroid" : "io.reactivex.rxjava2:rxandroid:2.0.1",
"rxjava" : "io.reactivex.rxjava2:rxjava:2.0.1",
"retrofit" : "com.squareup.retrofit2:retrofit:${android["VRetrofitSdk"]}",
"retrofit-converter-gson" : "com.squareup.retrofit2:converter-gson:${android["VRetrofitSdk"]}",
"retrofit-adapter-rxjava" : "com.squareup.retrofit2:adapter-rxjava2:${android["VRetrofitSdk"]}",
"okhttp3-logging-interceptor": "com.squareup.okhttp3:logging-interceptor:${android["VOkhttp"]}",
"okhttp3" : "com.squareup.okhttp3:okhttp:${android["VOkhttp"]}",
"rxlifecycle" : "com.trello.rxlifecycle2:rxlifecycle:${android["VRxlifecycle"]}",
"rxlifecycle-android" : "com.trello.rxlifecycle2:rxlifecycle-android:${android["VRxlifecycle"]}",
"rxlifecycle-components" : "com.trello.rxlifecycle2:rxlifecycle-components:${android["VRxlifecycle"]}",
"rxpermissions" : "com.tbruyelle.rxpermissions2:rxpermissions:0.9.3@aar",
"canary-debug" : "com.squareup.leakcanary:leakcanary-android:1.4-beta2",
"canary-release" : "com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta2",
]
}