-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.gradle
50 lines (46 loc) · 2.28 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
ext {
ext.kotlin_version = '1.5.30'
droid = [
compileSdk: 33,
buildTools: "30.0.3",
targetSdk : 30,
minSdk : 21,
Code : 1,
Name : "1.0.3"
]
ver = [
"core" : '1.6.0',
"shortcuts" : 'androidx.core:core-google-shortcuts:1.0.1',
"core_ktx" : 'androidx.core:core-ktx:1.8.0',
"appcompat" : 'androidx.appcompat:appcompat:1.4.2',
"constraintlayout": 'androidx.constraintlayout:constraintlayout:2.1.4',
"fragment" : '1.3.0',
"material" : 'com.google.android.material:material:1.6.1',
"runner" : 'androidx.test:runner:1.4.0',
"espresso" : '3.4.0',
"room" : '2.4.2',
"navi" : '2.4.2',
"legacy" : '1.0.0',
"junit" : 'junit:junit:4.13.2',
"lifecycle" : '2.4.1',
"kt-coroutines" : '1.1.1',
"nanohttpd" : '2.2.0',
"gson" : 'com.google.code.gson:gson:2.9.0',
"quickadapter" : 'io.github.cymchad:BaseRecyclerViewAdapterHelper:4.0.0-beta04',
"glide" : 'com.github.bumptech.glide:glide:4.13.2',
"spi" : 'com.google.auto.service:auto-service:1.0.1',
"rxjava" : 'io.reactivex.rxjava2:rxjava:2.2.21',
"rxandroid" : 'io.reactivex.rxjava2:rxandroid:2.1.1'
]
}
/*
implementation "androidx.core:core-ktx:${rootProject.ext.ver["core_ktx"]}"
implementation "androidx.appcompat:appcompat:${rootProject.ext.ver["appcompat"]}"
implementation "com.google.android.material:material:${rootProject.ext.ver["material"]}"
implementation "com.github.CymChad:BaseRecyclerViewAdapterHelper:${rootProject.ext.ver["quickadapter"]}"
implementation "androidx.constraintlayout:constraintlayout:${rootProject.ext.ver["constraintlayout"]}"
implementation "com.github.bumptech.glide:glide:${rootProject.ext.ver["glide"]}"
implementation "com.google.code.gson:gson:${rootProject.ext.ver["gson"]}"
kapt "com.android.databinding:compiler:4.2.1"
testImplementation "junit:junit:${rootProject.ext.ver["junit"]}"
*/