This commit is contained in:
rca 2024-06-23 00:35:59 +09:00
parent 9f769cd151
commit 1935597400
2 changed files with 8 additions and 0 deletions

View File

@ -47,4 +47,8 @@ dependencies {
// Retrofit
implementation libs.retrofit
implementation libs.converter.gson
// Room
implementation libs.androidx.room.runtime
annotationProcessor libs.androidx.room.compiler
}

View File

@ -10,6 +10,7 @@ activity = "1.9.0"
constraintlayout = "2.1.4"
nav = "2.7.7"
retrofit = "2.11.0"
room = "2.5.0"
[libraries]
converter-gson = { module = "com.squareup.retrofit2:converter-gson", version.ref = "retrofit" }
@ -30,6 +31,9 @@ navigation-ui = { group="androidx.navigation", name="navigation-ui", version.ref
navigation-dynamic-features-fragment = { group="androidx.navigation", name="navigation-dynamic-features-fragment", version.ref="nav"}
retrofit = { module = "com.squareup.retrofit2:retrofit", version.ref = "retrofit" }
androidx-room-runtime = { group="androidx.room", name="room-runtime", version="room" }
androidx-room-compiler = { group="androidx.room", name="room-compiler", version="room" }
[plugins]
androidApplication = { id = "com.android.application", version.ref = "agp" }
androidLibrary = { id = "com.android.library", version.ref = "agp" }