Внедрение даггера

This commit is contained in:
2023-04-22 21:19:31 +03:00
parent 8b06ccdaa2
commit 09800f9567
20 changed files with 301 additions and 112 deletions
+5 -1
View File
@@ -37,6 +37,8 @@ object AppLibraries: DependencyList() {
val roomKtx = "androidx.room:room-ktx:${Versions.room}"
val jsoup = "org.jsoup:jsoup:1.15.4"
val dagger = "com.google.dagger:dagger:${Versions.daggerVersion}"
}
@@ -69,7 +71,9 @@ object TestLibraries: DependencyList() {
object KaptLibraries: DependencyList(){
val compiler = "androidx.room:room-compiler:${Versions.room}"
val roomCompiler = "androidx.room:room-compiler:${Versions.room}"
val daggerCompiler = "com.google.dagger:dagger-compiler:${Versions.daggerVersion}"
}
/**
+1
View File
@@ -14,6 +14,7 @@ object Versions {
val compose = "1.4.1"
val room = "2.2.6"
val daggerVersion = "2.45"
//test
val junit = "4.12"