forked from xcc3641/SeeWeather
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.gradle
70 lines (58 loc) · 3.08 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
ext {
android = [
compileSdkVersion: 23,
buildToolsVersion: "25.0.1",
applicationId : "com.xiecc.seeWeather",
minSdkVersion : 19, // Android 4.4 Kitkat
targetSdkVersion : 23,
versionCode : 34,
versionName : "2.3",
resConfigs : "zh"
]
def supportVersion = "23.3.0"
def butterKnifeVersion = "7.0.0"
def glideVersion = "3.7.0"
def glideOkhttpVer = "1.4.0@aar"
def retrofitVersion = "2.0.2"
def gsonVersion = "2.4"
def okHttpVersion = '3.2.0'
def okioVersion = "1.6.0"
def rxJavaVersion = "1.1.3"
def rxAndroidVersion = "1.1.0"
def rxPermission = "0.7.0@aar"
def rxBinding = "0.4.0"
def rxLifecycle = "0.6.0"
def rvAnimatorsVer = "2.2.3"
dependencies = [
// Android support library
SupportAppcompatV7 : "com.android.support:appcompat-v7:$supportVersion",
SupportDesign : "com.android.support:design:$supportVersion",
//SupportRecyclerViewV7 : "com.android.support:recyclerview-v7:$supportVersion",
SupportCardViewV7 : "com.android.support:cardview-v7:$supportVersion",
SupportAppcompatV4 : "com.android.support:support-v4:$supportVersion",
// Nice utils
Butterknife : "com.jakewharton:butterknife:$butterKnifeVersion",
Glide : "com.github.bumptech.glide:glide:$glideVersion",
GlideOkHttp : "com.github.bumptech.glide:okhttp3-integration:$glideOkhttpVer",
// Rx ..
RxJava : "io.reactivex:rxjava:$rxJavaVersion",
RxAndroid : "io.reactivex:rxandroid:$rxAndroidVersion",
RxPermission : "com.tbruyelle.rxpermissions:rxpermissions:$rxPermission",
// RxBinding : "com.jakewharton.rxbinding:rxbinding:$rxBinding",
// RxBindingSupportV4 : "com.jakewharton.rxbinding:rxbinding-support-v4:$rxBinding",
// RxBindingSupportV7 : "com.jakewharton.rxbinding:rxbinding-appcompat-v7:$rxBinding",
// RxBindingDesign : "com.jakewharton.rxbinding:rxbinding-design:$rxBinding",
// RxBindingRecyclerView : "com.jakewharton.rxbinding:rxbinding-recyclerview-v7:$rxBinding",
// RxLifecycle : "com.trello:rxlifecycle:$rxLifecycle",
// Network
Okttp : "com.squareup.okhttp3:okhttp:$okHttpVersion",
Okio : "com.squareup.okio:okio:$okioVersion",
Retrofit : "com.squareup.retrofit2:retrofit:$retrofitVersion",
RetrofitConverterGson : "com.squareup.retrofit2:converter-gson:$retrofitVersion",
RetrofitAdapterRxJava : "com.squareup.retrofit2:adapter-rxjava:$retrofitVersion",
OkHttpLoggingInterceptor: "com.squareup.okhttp3:logging-interceptor:$okHttpVersion",
Gson : "com.google.code.gson:gson:$gsonVersion",
// widget
RVanimators : "jp.wasabeef:recyclerview-animators:$rvAnimatorsVer",
]
}