-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathlib_depends.gradle
69 lines (69 loc) · 4.25 KB
/
lib_depends.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
ext {
libs = [
kotlin : [
coroutines: "org.jetbrains.kotlinx:kotlinx-coroutines-android:${getProperty('kotlin.coroutines')}",
],
androidx : [
core : "androidx.core:core-ktx:${kotlinVersion}",
appcompat: 'androidx.appcompat:appcompat:1.5.1',
multidex : "androidx.multidex:multidex:2.0.1",
activity : [
activity: 'androidx.activity:activity:1.6.1',
ktx : 'androidx.activity:activity-ktx:1.6.1',
],
fragment : [
fragment: 'androidx.fragment:fragment:1.5.4',
ktx : 'androidx.fragment:fragment-ktx:1.5.4',
],
room : [
core : "androidx.room:room-runtime:2.4.3",
room_compiler: "androidx.room:room-compiler:2.4.3",
room_ktx : "androidx.room:room-ktx:2.4.3",
]
],
google : [
material: 'com.google.android.material:material:1.7.0',
gson : 'com.google.code.gson:gson:2.10'
],
retrofit2 : [
retrofit2 : "com.squareup.retrofit2:retrofit:${getProperty('retrofit2.version')}",
converter_moshi : "com.squareup.retrofit2:converter-moshi:${getProperty('retrofit2.version')}",
converter_gson : "com.squareup.retrofit2:converter-gson:${getProperty('retrofit2.version')}",
logging_interceptor: 'com.squareup.okhttp3:logging-interceptor:4.9.0',
],
glide : [
"core" : "com.github.bumptech.glide:glide:${getProperty('glide.version')}",
"compiler" : "com.github.bumptech.glide:compiler:${getProperty('glide.version')}",
// glide高斯模糊
"transformations": "jp.wasabeef:glide-transformations:4.3.0"
],
arouter : [
"core" : "com.alibaba:arouter-api:${getProperty('arouter.version')}",
"compiler": "com.alibaba:arouter-compiler:${getProperty('arouter.version')}",
],
moshi : [
"core" : "com.squareup.moshi:moshi-kotlin:${getProperty('moshi.version')}",
"kotlin_codegen": "com.squareup.moshi:moshi-kotlin-codegen:${getProperty('moshi.version')}",
],
smart : [
"layout_kernel" : "io.github.scwang90:refresh-layout-kernel:${getProperty('smart.version')}",
"header_classics" : "io.github.scwang90:refresh-header-classics:${getProperty('smart.version')}",
"header_radar" : "io.github.scwang90:refresh-header-radar:${getProperty('smart.version')}",
"header_falsify" : "io.github.scwang90:refresh-header-falsify:${getProperty('smart.version')}",
"header_material" : "io.github.scwang90:refresh-header-material:${getProperty('smart.version')}",
"header_two_level": "io.github.scwang90:refresh-header-material:${getProperty('smart.version')}",
"footer_classics" : "io.github.scwang90:refresh-footer-classics:${getProperty('smart.version')}",
"footer_ball" : "io.github.scwang90:refresh-footer-ball:${getProperty('smart.version')}",
],
BaseAdapterHelper : "com.github.CymChad:BaseRecyclerViewAdapterHelper:3.0.11",
// 骨架屏
skeleton : "com.ethanhua:skeleton:1.1.2",
// 动画的实现
shimmerlayout : "io.supercharge:shimmerlayout:2.1.0",
eventbus : "org.greenrobot:eventbus:3.3.1",
leakcanary : "com.squareup.leakcanary:leakcanary-android:2.10",
junit : "junit:junit:4.13.2",
androidJunit : "androidx.test.ext:junit:1.1.5",
androidEspressoCore: "androidx.test.espresso:espresso-core:3.5.1",
]
}