-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
config.gradle
25 lines (25 loc) · 1.26 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
ext {
libs = [
androidx : [
annotation : getProperty('androidx.annotation'),
appcompat : getProperty('androidx.appcompat'),
coordinatorlayout : getProperty('androidx.coordinatorlayout'),
constraintlayout : getProperty('androidx.constraintlayout'),
localbroadcastmanager: getProperty('androidx.localbroadcastmanager'),
material : getProperty('androidx.material'),
preference : getProperty('androidx.preference'),
recyclerview : getProperty('androidx.recyclerview'),
work : getProperty('androidx.work'),
],
kotlin : [
core : getProperty('kotlin.version'),
coroutines: getProperty('kotlin.coroutines'),
],
libGlide : getProperty('lib.glide'),
libMuzei : getProperty('lib.muzei'),
libMoshi : getProperty('squareup.moshi'),
libOkhttp : getProperty('squareup.okhttp'),
libRetrofit: getProperty('squareup.retrofit'),
libRoom : getProperty('lib.room'),
]
}