-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathconfig.gradle
65 lines (59 loc) · 3.36 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
ext {
android = [
compileSdkVersion: 29,
buildToolsVersion: "29.0.2",
minSdkVersion : 26,
targetSdkVersion : 29,
versionCode : 1,
versionName : "1.0.3",
]
appId = [
"app": "com.wjx.android.weather",
]
coroutines_version ='1.3.2'
retrofit_version = '2.6.2'
okhttp_version = '3.4.1'
androidx_lifecycle_version = '2.2.0'
loadSir_version = '1.3.6'
materialsearchview_version = '1.4.0'
lottie_version = '3.4.0'
adapter_helper_version = '3.0.4'
room_version = '2.2.5'
material_dialog_version = "3.1.1"
preference_version = "1.1.0-alpha04"
agentweb_version = '4.1.2'
pgyersdk_version = '3.0.10'
work_version = '2.3.4'
app_startup_version ='1.0.0-alpha01'
dependencies = [
"appcompat" : "androidx.appcompat:appcompat:1.1.0",
"recyclerview" : "com.android.support:recyclerview-v7:29.0.0",
"constraint" : "androidx.constraintlayout:constraintlayout:1.1.3",
"kotlin" : "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version",
"design" : "com.android.support:design:29.0.0",
"material_design" : "com.google.android.material:material:1.1.0-alpha08",
"androidx" : "androidx.core:core-ktx:1.2.0",
"androidx-lifecycle" : "androidx.lifecycle:lifecycle-viewmodel-ktx:$androidx_lifecycle_version",
"coroutines" : "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version",
"retrofit" : "com.squareup.retrofit2:retrofit:$retrofit_version",
"retrofit-converter-gson" : "com.squareup.retrofit2:converter-gson:${retrofit_version}",
"retrofit-adapter-rxjava2" : "com.squareup.retrofit2:adapter-rxjava2:${retrofit_version}",
"okhttp3" : "com.squareup.okhttp3:okhttp:${okhttp_version}",
"adapter_helper" : "com.github.CymChad:BaseRecyclerViewAdapterHelper:$adapter_helper_version",
"loadSir" : "com.kingja.loadsir:loadsir:$loadSir_version",
"materialsearchview" : "com.miguelcatalan:materialsearchview:$materialsearchview_version",
"lottie" : "com.airbnb.android:lottie:$lottie_version",
"room_runtime" : "androidx.room:room-runtime:$room_version",
"room_ktx" : "androidx.room:room-ktx:$room_version",
"map" : "com.amap.api:location:latest.integration",
"viewpager_indicator" : "com.github.zhpanvip:viewpagerindicator:1.0.4",
"material_dialog" : "com.afollestad.material-dialogs:core:$material_dialog_version",
"preference" : "androidx.preference:preference:$preference_version",
"agentweb" : "com.just.agentweb:agentweb:$agentweb_version",
"pgyer_sdk" : "com.pgyersdk:sdk:$pgyersdk_version",
"wrok_manager" : "androidx.work:work-runtime-ktx:$work_version",
"app_startup" : "androidx.startup:startup-runtime:1.0.0-alpha01"
]
processor = [
]
}