-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcore-dependencies.gradle
52 lines (43 loc) · 1.36 KB
/
core-dependencies.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
dependencies {
//Kotlin
implementation Libs.kotlin
//Androidx
implementation Libs.androidx_appcompat
implementation Libs.androidx_core
implementation Libs.androidx_activity
implementation Libs.androidx_fragment
implementation Libs.androidx_card_view
implementation Libs.androidx_constraint_layout
implementation Libs.androidx_multidex
implementation Libs.androidx_browser
implementation Libs.material_design
//Android arch
implementation Libs.androidx_lifecycle
implementation Libs.androidx_liveData
implementation Libs.androidx_viewModel
implementation Libs.androidx_java8
//Coroutines
implementation Libs.coroutines_core
implementation Libs.coroutines_android
implementation Libs.kotlin_flow_extensions
//Dagger
implementation Libs.dagger
implementation Libs.dagger_support
kapt Libs.dagger_compiler
kapt Libs.dagger_processor
//Navigation
implementation Libs.androidx_nav_runtime
implementation Libs.androidx_nav_fragment
implementation Libs.androidx_nav_ui
//Groupie
implementation Libs.groupie
implementation Libs.groupie_extensions
//Glide
implementation Libs.glide
implementation Libs.glide_okhttp_integration
kapt Libs.glideCompiler
//Joda
implementation Libs.joda
//Debug tools
implementation Libs.timber
}