-
Notifications
You must be signed in to change notification settings - Fork 20
/
config.gradle
61 lines (58 loc) · 4.11 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
//通用配置依赖项分组管理
ext {
android = [
compileSdkVersion: 30,
buildToolsVersion: "30.0.2",
minSdkVersion : 21,
targetSdkVersion : 30,
applicationId : "com.fmt.kotlin.eyepetizer",
versionCode : 1,
versionName : "2.0",
]
androidx = [
"androidx-appcompat" : "androidx.appcompat:appcompat:1.2.0",
"androidx.swiperefreshlayout" : "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0",
"androidx.recyclerview" : "androidx.recyclerview:recyclerview:1.1.0",
"androidx.constraintlayout" : "androidx.constraintlayout:constraintlayout:2.0.4",
"android.material" : "com.google.android.material:material:1.2.1",
"androidx.fragment" : "androidx.fragment:fragment-ktx:1.2.5",
"androidx.core" : "androidx.core:core-ktx:1.3.2",
"androidx.lifecycle-runtime" : "androidx.lifecycle:lifecycle-runtime-ktx:2.2.0",
"lifecycle-common-java8" : "androidx.lifecycle:lifecycle-common-java8:2.2.0",
"androidx.lifecycle-viewmodel" : "androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0",
"androidx.lifecycle-livedata" : "androidx.lifecycle:lifecycle-livedata-ktx:2.2.0",
"androidx.startup-runtime" : "androidx.startup:startup-runtime:1.0.0",
"junit" : "junit:junit:4.13.1",
"androidx.test.espresso:espresso-core": "androidx.test.espresso:espresso-core:3.3.0",
"hilt-compiler" : "androidx.hilt:hilt-compiler:1.0.0"
]
dependencies = [
"kotlin-stdlib" : "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version",
"okhttp3" : "com.squareup.okhttp3:okhttp:4.9.1",
"logging-interceptor" : "com.squareup.okhttp3:logging-interceptor:4.9.1",
"retrofit2" : "com.squareup.retrofit2:retrofit:2.9.0",
"converter-gson" : "com.squareup.retrofit2:converter-gson:2.9.0",
"immersionbar" : "com.gyf.immersionbar:immersionbar:3.0.0",
"immersionbar-ktx" : "com.gyf.immersionbar:immersionbar-ktx:3.0.0",
"BaseRecyclerViewAdapterHelper": "com.github.CymChad:BaseRecyclerViewAdapterHelper:3.0.6",
"coil" : "io.coil-kt:coil:1.1.0",
"tastytoast" : "com.sdsmdg.tastytoast:tastytoast:0.1.1",
"LoadingDialog" : "com.github.gittjy:LoadingDialog:1.0.2",
"banner" : "com.youth.banner:banner:2.1.0",
"recycler-view-divider" : "com.github.fondesa:recycler-view-divider:3.3.0",
"SwipeRecyclerView" : "com.yanzhenjie.recyclerview:x:1.3.2",
"mmkv" : "com.tencent:mmkv-static:1.2.4",
"agentweb" : "com.just.agentweb:agentweb-androidx:4.1.4",
"PhotoView" : "com.github.chrisbanes:PhotoView:2.0.0",
"ReadMoreTextView" : "kr.co.prnd:readmore-textview:1.0.0",
"LiveDataBus" : "com.github.fmtjava:LiveDataBus:1.0.1",
"jiaozivideoplayer" : "cn.jzvd:jiaozivideoplayer:7.5.0",
"arouter-api" : "com.alibaba:arouter-api:1.5.0",
"arouter-compiler" : "com.alibaba:arouter-compiler:1.2.2",
"hilt-android" : "com.google.dagger:hilt-android:2.38.1",
"hilt-android-compiler" : "com.google.dagger:hilt-android-compiler:2.38.1",
"dokitx" : "com.didichuxing.doraemonkit:dokitx:3.3.5",
"dokitx-no-op" : "com.didichuxing.doraemonkit:dokitx-no-op:3.3.5",
"doraemonkit-leakcanary" : "com.didichuxing.doraemonkit:doraemonkit-leakcanary:3.1.5",
]
}