-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.gradle
executable file
·101 lines (90 loc) · 5.6 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
97
98
99
100
101
ext {
android = [
compileSdkVersion: 28,
buildToolsVersion: "28.0.3",
minSdkVersion : 21,
targetSdkVersion : 28,
versionCode : 1,
versionName : "1.0"
]
dependVersion = [
androidSupportSdkVersion: "28.0.0",
smartrefreshVersion : "1.0.5.1",
swipeDelMenuLayout : "V1.3.0",
espressoSdkVersion : "3.0.2",
retrofitSdkVersion : "2.4.0",
glideSdkVersion : "4.9.0",
fragmentationVersion : "1.1.9",
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.2",
"annotations" : "com.android.support:support-annotations:${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}"
]
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 = [
//ui
"SmartRefreshLayout" :"com.scwang.smartrefresh:SmartRefreshLayout:${dependVersion["smartrefreshVersion"]}",
"SmartRefreshHeader" : "com.scwang.smartrefresh:SmartRefreshHeader:${dependVersion["smartrefreshVersion"]}",
"ByeBurger" : "com.github.githubwing:ByeBurger:1.2.3",
"brvh" : 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.35',
"banner" : 'cn.bingoogolapple:bga-banner:2.2.4@aar',
"circleImageview" : "de.hdodenhof:circleimageview:2.2.0",
"swipeDelMenuLayout" : "com.github.mcxtzhang:SwipeDelMenuLayout:${dependVersion.swipeDelMenuLayout}",
"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:2.6.6.1',
// "bugly-crash-up" : 'com.tencent.bugly:crashreport_upgrade:1.3.5',
"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:kotlin:3.0.0',
"fab" : 'com.github.clans:fab:1.6.4',
"materialdatetimepicker": 'com.wdullaer:materialdatetimepicker:3.6.4',
"fragmentation" : "me.yokeyword:fragmentation:${dependVersion["fragmentationVersion"]}",
"fragmentation-swipeback" : "me.yokeyword:fragmentation-swipeback:${dependVersion["fragmentationVersion"]}",
"android-autosize" : 'me.jessyan:autosize:1.0.5',
"anko" : "org.jetbrains.anko:anko:${dependVersion.anko}"
]
otherDeps = [
"glideCompiler": "com.github.bumptech.glide:compiler:${dependVersion.glideSdkVersion}",
]
supportLibs = supportDeps.values()
networkLibs = retrofit.values()
rxJavaLibs = rxJava.values()
commonLibs = commonDeps.values()
annotationProcessorLibs = [otherDeps["glideCompiler"]]
}