forked from iceCola7/WanAndroid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.gradle
96 lines (86 loc) · 5.38 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
91
92
93
94
95
96
ext {
android = [
compileSdkVersion: 28,
buildToolsVersion: "28.0.3",
minSdkVersion : 17,
targetSdkVersion : 28,
versionCode : 16,
versionName : "1.1.5"
]
dependVersion = [
androidSupportSdkVersion: "28.0.0",
espressoSdkVersion : "3.0.2",
retrofitSdkVersion : "2.4.0",
glideSdkVersion : "4.8.0",
rxJava : "2.2.2",
rxAndroid : "2.1.0",
rxKotlin : "2.3.0",
anko : "0.10.7"
]
supportDeps = [
"supportv4" : "com.android.support:support-v4:${dependVersion.androidSupportSdkVersion}",
"appcompatv7" : "com.android.support:appcompat-v7:${dependVersion.androidSupportSdkVersion}",
"cardview" : "com.android.support:cardview-v7:${dependVersion.androidSupportSdkVersion}",
"design" : "com.android.support:design:${dependVersion.androidSupportSdkVersion}",
"constraint-layout": "com.android.support.constraint:constraint-layout:1.1.3",
"annotations" : "com.android.support:support-annotations:${dependVersion.androidSupportSdkVersion}",
"vector-drawable" : "com.android.support:support-vector-drawable:${dependVersion.androidSupportSdkVersion}"
]
retrofit = [
"retrofit" : "com.squareup.retrofit2:retrofit:${dependVersion.retrofitSdkVersion}",
"retrofitConverterGson" : "com.squareup.retrofit2:converter-gson:${dependVersion.retrofitSdkVersion}",
"retrofitAdapterRxjava2" : "com.squareup.retrofit2:adapter-rxjava2:${dependVersion.retrofitSdkVersion}",
"okhttp3LoggerInterceptor": 'com.squareup.okhttp3:logging-interceptor:3.11.0',
"retrofitConverterMoshi" : 'com.squareup.retrofit2:converter-moshi:2.4.0',
"retrofitKotlinMoshi" : "com.squareup.moshi:moshi-kotlin:1.7.0"
]
rxJava = [
"rxJava" : "io.reactivex.rxjava2:rxjava:${dependVersion.rxJava}",
"rxAndroid": "io.reactivex.rxjava2:rxandroid:${dependVersion.rxAndroid}",
"rxKotlin" : "io.reactivex.rxjava2:rxkotlin:${dependVersion.rxKotlin}",
"anko" : "org.jetbrains.anko:anko:${dependVersion.anko}"
]
testDeps = [
"junit" : 'junit:junit:4.12',
"runner" : 'com.android.support.test:runner:1.0.2',
"espresso-core" : "com.android.support.test.espresso:espresso-core:${dependVersion.espressoSdkVersion}",
"espresso-contrib" : "com.android.support.test.espresso:espresso-contrib:${dependVersion.espressoSdkVersion}",
"espresso-intents" : "com.android.support.test.espresso:espresso-intents:${dependVersion.espressoSdkVersion}",
"leakcanary-debug" : 'com.squareup.leakcanary:leakcanary-android:1.6.1',
"leakcanary-release" : 'com.squareup.leakcanary:leakcanary-android-no-op:1.6.1',
"leakcanary-debug-fragment": 'com.squareup.leakcanary:leakcanary-support-fragment:1.6.1',
"debug-db" : 'com.amitshekhar.android:debug-db:1.0.4'
]
commonDeps = [
"glide" : "com.github.bumptech.glide:glide:${dependVersion.glideSdkVersion}",
"brvh" : 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.35',
"banner" : 'cn.bingoogolapple:bga-banner:2.2.4@aar',
"agentweb" : 'com.just.agentweb:agentweb:4.0.2',
"multidex" : 'com.android.support:multidex:1.0.3',
//"vertical-tablayout": 'q.rorbin:VerticalTabLayout:1.2.5',
"flow-layout" : 'com.hyman:flowlayout-lib:1.1.2',
"eventbus" : 'org.greenrobot:eventbus:3.1.1',
//"bugly" : 'com.tencent.bugly:crashreport:3.1.0',
"bugly-crash-up" : 'com.tencent.bugly:crashreport_upgrade:1.4.2',
// 指定tinker依赖版本(注:应用升级1.3.5版本起,不再内置tinker)
'tinker' : 'com.tencent.tinker:tinker-android-lib:1.9.14.3',
//'nativecrashreport' : 'com.tencent.bugly:nativecrashreport:3.7.1',//latest.release
"swipeback" : 'com.cxz:swipeback:1.0.1',
"material-dialogs" : 'com.afollestad.material-dialogs:commons:0.9.4.4',
"logger" : 'com.orhanobut:logger:2.1.1',
"litepal" : 'org.litepal.android:core:2.0.0',
"fab" : 'com.github.clans:fab:1.6.4',
"materialdatetimepicker": 'com.wdullaer:materialdatetimepicker:3.6.4',
"android-autosize" : 'me.jessyan:autosize:1.1.0',
"spinkit" : 'com.github.ybq:Android-SpinKit:1.2.0'
]
otherDeps = [
"glideCompiler": "com.github.bumptech.glide:compiler:${dependVersion.glideSdkVersion}",
"glideOkhttp" : "com.github.bumptech.glide:okhttp3-integration:${dependVersion.glideSdkVersion}"
]
supportLibs = supportDeps.values()
networkLibs = retrofit.values()
rxJavaLibs = rxJava.values()
commonLibs = commonDeps.values()
annotationProcessorLibs = [otherDeps["glideCompiler"]]
}