-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependency.gradle
51 lines (44 loc) · 2.13 KB
/
dependency.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
ext {
//Android
compileSdkVersion = 29
buildToolsVersion = "29.0.3"
minSdkVersion = 21
targetSdkVersion = 29
//dependencies
dependencies = [
//arouter begin
arouter_api : "com.alibaba:arouter-api:1.5.0",
arouter_compiler : "com.alibaba:arouter-compiler:1.2.2",
//arouter end
//androidx--begin
appcompat : "androidx.appcompat:appcompat:1.1.0",
fragment_ktx : "androidx.fragment:fragment-ktx:1.2.0",
lifecycle_extensions : "androidx.lifecycle:lifecycle-extensions:2.2.0",
lifecycle_compiler : "androidx.lifecycle:lifecycle-compiler:2.2.0",
constraintlayout : "androidx.constraintlayout:constraintlayout:1.1.3",
recyclerview : "androidx.recyclerview:recyclerview:1.1.0",
material : "com.google.android.material:material:1.0.0",
multidex : "androidx.multidex:multidex:2.0.1",
//androidx--end
//hotfix-begin
crashreport_upgrade : "com.tencent.bugly:crashreport_upgrade:1.3.6",
// tinker_android_lib : "com.tencent.tinker:tinker-android-lib:1.9.9",
//hotfix-end
//glide--begin
glide : "com.github.bumptech.glide:glide:4.9.0",
glide_compiler : "com.github.bumptech.glide:compiler:4.9.0",
//glide--end
//http-Serializable--begin
retrofit : "com.squareup.retrofit2:retrofit:2.8.1",
gson : "com.google.code.gson:gson:2.8.6",
//http-Serializable--end
//hilt--begin
hilt_android : "com.google.dagger:hilt-android:2.28-alpha",
hilt_android_compiler: "com.google.dagger:hilt-android-compiler:2.28-alpha",
hilt_compiler : "androidx.hilt:hilt-compiler:1.0.0-alpha01",
//hilt--end
//刷新数据控件---begin
refresh_layout :'com.scwang.smartrefresh:SmartRefreshLayout:1.1.0'
//刷新数据控件---end
]
}