-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.gradle
89 lines (71 loc) · 5.29 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
ext {
android = [
compileSdkVersion: 26,
minSdkVersion : 16,
targetSdkVersion : 26,
versionName : "1.0.0"
]
version = [
androidSupportSdkVersion : "26.1.0",
retrofitSdkVersion : "2.3.0",
glideSdkVersion : "4.4.0",
butterknifeSdkVersion : "8.8.1",
rxlifecycleSdkVersion : "1.0",
rxlifecycle2SdkVersion : "2.1.0",
canarySdkVersion : "1.5.1",
blockcanarySdkVersion : "1.2.1",
constraintLayoutSdkVersion : "1.0.1",
meituanWalleSdkVersion : "1.1.5",
customactivityoncrashSdkVersion: "1.5.0",
objectboxVersion : "1.3.4",
sonicVersion : "2.0.0"
]
dependencies = [
//support
"appcompat-v7" : "com.android.support:appcompat-v7:${version["androidSupportSdkVersion"]}",
"design" : "com.android.support:design:${version["androidSupportSdkVersion"]}",
"support-v4" : "com.android.support:support-v4:${version["androidSupportSdkVersion"]}",
"cardview-v7" : "com.android.support:cardview-v7:${version["androidSupportSdkVersion"]}",
"annotations" : "com.android.support:support-annotations:${version["androidSupportSdkVersion"]}",
"recyclerview-v7" : "com.android.support:recyclerview-v7:${version["androidSupportSdkVersion"]}",
"multidex" : "com.android.support:multidex:1.0.1",
//network
"retrofit" : "com.squareup.retrofit2:retrofit:${version["retrofitSdkVersion"]}",
"retrofit-converter-gson" : "com.squareup.retrofit2:converter-gson:${version["retrofitSdkVersion"]}",
"retrofit-adapter-rxjava" : "com.squareup.retrofit2:adapter-rxjava:${version["retrofitSdkVersion"]}",
"retrofit-adapter-rxjava2": "com.squareup.retrofit2:adapter-rxjava2:${version["retrofitSdkVersion"]}",
"okhttp3" : "com.squareup.okhttp3:okhttp:3.9.1",
"glide" : "com.github.bumptech.glide:glide:${version["glideSdkVersion"]}",
"glide-compiler" : "com.github.bumptech.glide:compiler:${version["glideSdkVersion"]}",
"glide-loader-okhttp3" : "com.github.bumptech.glide:okhttp3-integration:${version["glideSdkVersion"]}",
//view
"butterknife" : "com.jakewharton:butterknife:${version["butterknifeSdkVersion"]}",
"butterknife-compiler" : "com.jakewharton:butterknife-compiler:${version["butterknifeSdkVersion"]}",
"vlayout" : "com.alibaba.android:vlayout:1.0.9@aar",
//rx2
"rxandroid2" : "io.reactivex.rxjava2:rxandroid:2.0.1",
"rxjava2" : "io.reactivex.rxjava2:rxjava:2.1.1",
"rxlifecycle2" : "com.trello.rxlifecycle2:rxlifecycle:${version["rxlifecycle2SdkVersion"]}",
"rxlifecycle2-components" : "com.trello.rxlifecycle2:rxlifecycle-components:${version["rxlifecycle2SdkVersion"]}",
"rxcache2" : "com.github.VictorAlbertos.RxCache:runtime:1.8.1-2.x",
"rxcache-jolyglot-gson" : "com.github.VictorAlbertos.Jolyglot:gson:0.0.3",
"rxpermissions2" : "com.tbruyelle.rxpermissions2:rxpermissions:0.9.4@aar",
// tools
"androideventbus" : "org.simple:androideventbus:1.0.5.1",
"gson" : "com.google.code.gson:gson:2.8.1",
"canary-debug" : "com.squareup.leakcanary:leakcanary-android:${version["canarySdkVersion"]}",
"canary-release" : "com.squareup.leakcanary:leakcanary-android-no-op:${version["canarySdkVersion"]}",
"blockcanary-debug" : "com.github.moduth:blockcanary-android:${version["blockcanarySdkVersion"]}",
"blockcanary-release" : "com.github.moduth:blockcanary-no-op:${version["blockcanarySdkVersion"]}",
"bugly-crashreport" : "com.tencent.bugly:crashreport:latest.release",
"bugly-nativecrashreport" : "com.tencent.bugly:nativecrashreport:latest.release",
"customactivityoncrash" : "cat.ereza:customactivityoncrash:${version["customactivityoncrashSdkVersion"]}",
"readystatesoftware.chuck": 'com.readystatesoftware.chuck:library:1.0.4',
"objectbox" : "io.objectbox:objectbox-gradle-plugin:${version["objectboxVersion"]}",
"objectbrowser" : "io.objectbox:objectbox-android-objectbrowser:${version["objectboxVersion"]}",
"objectbox-android" : "io.objectbox:objectbox-android:${version["objectboxVersion"]}",
"wallePlugin" : "com.meituan.android.walle:plugin:${version["meituanWalleSdkVersion"]}",
"meituan-walle" : "com.meituan.android.walle:library:${version["meituanWalleSdkVersion"]}",
"sonic-webView" : "com.tencent.sonic:sdk:${version["sonicVersion"]}"
]
}