-
Notifications
You must be signed in to change notification settings - Fork 117
/
dependencies.gradle
executable file
·49 lines (37 loc) · 1.9 KB
/
dependencies.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
ext {
applicationId = "com.liuguangqiang.idaily"
versionCode = 1
versionName = "1.0.0"
minSdkVersion = 21
compileSdkVersion = 30
targetSdkVersion = 30
buildToolsVersion = '25.0.2'
compiles = [
supportAppCompat : 'androidx.appcompat:appcompat:1.0.0',
supportDesgin : 'com.google.android.material:material:1.0.0',
supportRecyclerView : 'androidx.recyclerview:recyclerview:1.0.0',
supportCardView : 'androidx.appcompat:appcompat:1.0.0',
logansquare : 'com.bluelinelabs:logansquare:1.3.4',
logansquareConverter: "com.github.aurae.retrofit2:converter-logansquare:1.4.0",
glide : 'com.github.bumptech.glide:glide:3.6.1',
gson : 'com.google.code.gson:gson:2.5',
dagger : 'com.google.dagger:dagger:2.2',
eventbus : 'de.greenrobot:eventbus:3.0.0-beta1',
rxandroid : 'io.reactivex:rxandroid:1.0.1',
rxjava : 'io.reactivex:rxjava:1.0.14',
okhttpLog : 'com.squareup.okhttp3:logging-interceptor:3.0.1',
retrofit : 'com.squareup.retrofit2:retrofit:2.0.0',
retrofitAdapter : 'com.squareup.retrofit2:adapter-rxjava:2.0.0',
systembartint : 'com.readystatesoftware.systembartint:systembartint:1.0.3',
guangqiangWidgets : 'com.liuguangqiang.support:widgets:0.1.0',
guangqiangUtils : 'com.liuguangqiang.support:utils:0.1.0',
viewpagerIndicator : "com.mcxiaoke.viewpagerindicator:library:2.4.1"
]
provides = [
daggerCompiler: 'com.google.dagger:dagger-compiler:2.2',
annotation : 'org.glassfish:javax.annotation:10.0-b28'
]
apts = [
logansquareCompiler: 'com.bluelinelabs:logansquare-compiler:1.3.4'
]
}