-
Notifications
You must be signed in to change notification settings - Fork 3
/
conf.gradle
48 lines (45 loc) · 2.01 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
ext {
// 这个标志位决定了部分Library是否可运行
// 处于false的时候,部分组件就是一个单独
// 可运行的Module
isLibrary = true
android = [
compileSdkVersion: 25,
buildToolsVersion: "26.0.0",
minSdkVersion : 14,
targetSdkVersion : 25,
applicationId : "com.xiasuhuei321.gank_kotlin",
versionCode : 1,
versionName : 'V0.0.0.0001',
]
dependencies = [
// 网络请求框架
"retrofit" : "com.squareup.retrofit2:retrofit:2.3.0",
// 请求框架适配器
"retrofit_rxjava": "com.squareup.retrofit2:adapter-rxjava2:2.3.0",
"retrofit_gson" : "com.squareup.retrofit2:converter-gson:2.3.0",
"log_interceptor": "com.squareup.okhttp3:logging-interceptor:3.4.1",
// gson
"gson" : "com.google.code.gson:gson:2.8.1",
// rxjava2
"rxjava2" : "io.reactivex.rxjava2:rxjava:2.1.2",
// rxandroid
"rxandroid" : "io.reactivex.rxjava2:rxandroid:2.0.1",
// Glide
"glide" : "com.github.bumptech.glide:glide:4.0.0",
"glide_compiler" : "com.github.bumptech.glide:compiler:4.0.0",
// 黄油刀
"butterknife" : "com.jakewharton:butterknife:8.4.0",
"butterknife_apt": "com.jakewharton:butterknife-compiler:8.4.0",
// 二维码生成和美化
"awesomeQRCode" : "com.github.SumiMakito:AwesomeQRCode:1.0.5",
// 事件总线
"eventbus" : "org.greenrobot:eventbus:3.0.0",
// bugly
"bugly_sdk" : "com.tencent.bugly:crashreport:latest.release",
"bugly_ndk" : "com.tencent.bugly:nativecrashreport:latest.release",
"supertextview" : "com.github.lygttpod:SuperTextView:2.1.0",
// anko
"anko" : "org.jetbrains.anko:anko:0.10.1"
]
}