File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,36 @@ android {
29
29
}
30
30
31
31
dependencies {
32
+ // dagger
33
+ implementation ' com.google.dagger:dagger:2.44'
34
+ annotationProcessor ' com.google.dagger:dagger-compiler:2.44'
35
+
36
+ // navigation
37
+ implementation ' androidx.navigation:navigation-fragment:2.7.4'
38
+ implementation ' androidx.navigation:navigation-ui:2.7.4'
39
+
40
+ // room
41
+ def room_version = " 2.6.0"
42
+ implementation " androidx.room:room-runtime:$room_version "
43
+ annotationProcessor " androidx.room:room-compiler:$room_version "
44
+ implementation " androidx.room:room-rxjava3:$room_version "
45
+
46
+ // Glide
47
+ implementation ' com.github.bumptech.glide:glide:4.16.0'
48
+ annotationProcessor ' com.github.bumptech.glide:compiler:4.16.0'
49
+
50
+ // RxJava
51
+ implementation ' io.reactivex.rxjava3:rxandroid:3.0.0'
52
+ implementation ' io.reactivex.rxjava3:rxjava:3.0.0'
53
+
54
+ // LiveData
55
+ implementation ' androidx.lifecycle:lifecycle-viewmodel:2.6.2'
56
+ implementation ' androidx.lifecycle:lifecycle-livedata:2.6.2'
57
+
58
+ // Retrofit
59
+ implementation ' com.squareup.retrofit2:retrofit:2.9.0'
60
+ implementation ' com.squareup.retrofit2:converter-gson:2.9.0'
61
+ implementation " com.github.akarnokd:rxjava3-retrofit-adapter:3.0.0"
32
62
33
63
implementation ' androidx.appcompat:appcompat:1.6.1'
34
64
implementation ' com.google.android.material:material:1.10.0'
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <navigation xmlns : android =" http://schemas.android.com/apk/res/android"
3
+ xmlns : app =" http://schemas.android.com/apk/res-auto"
4
+ android : id =" @+id/nav_graph" >
5
+
6
+ </navigation >
You can’t perform that action at this time.
0 commit comments