Added Room dependency.

This commit is contained in:
MohitMaliFtechiz 2024-05-29 10:58:43 +05:30 committed by MohitMaliFtechiz
parent fb2b42b44c
commit 0c26f6192d
3 changed files with 8 additions and 0 deletions

View File

@ -351,4 +351,8 @@ object Libs {
*/
const val material_show_case_view: String =
"com.github.deano2390:MaterialShowcaseView:" + Versions.material_show_case_view
const val roomKtx = "androidx.room:room-ktx:" + Versions.roomVersion
const val roomCompiler = "androidx.room:room-compiler:" + Versions.roomVersion
}

View File

@ -103,6 +103,8 @@ object Versions {
const val junit: String = "1.1.5"
const val material_show_case_view: String = "1.3.7"
const val roomVersion = "2.5.0"
}
/**

View File

@ -206,6 +206,8 @@ class AllProjectConfigurer {
implementation(Libs.rxjava)
implementation(Libs.preference_ktx)
implementation(Libs.material_show_case_view)
implementation(Libs.roomKtx)
kapt(Libs.roomCompiler)
}
}
}