Skip to content

Commit 6ece4b8

Browse files
Merge pull request #1 from Onix-Systems/TASK-1
feat: TASK-1 adding project dependencies
2 parents c708703 + ff07683 commit 6ece4b8

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

app/build.gradle

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,36 @@ android {
2929
}
3030

3131
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"
3262

3363
implementation 'androidx.appcompat:appcompat:1.6.1'
3464
implementation 'com.google.android.material:material:1.10.0'
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
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>

0 commit comments

Comments
 (0)