feat: add AppDatabase and move payment caching to db

This commit is contained in:
2026-06-01 14:25:50 +02:00
parent b5473bfafc
commit 18c8697ce9
11 changed files with 180 additions and 46 deletions
+6
View File
@@ -19,6 +19,8 @@ retrofit = "3.0.0"
zxing-embedded = "4.3.0"
navigationCompose = "2.8.9"
appcompat = "1.7.0"
ksp = "2.2.10-2.0.2"
room = "2.7.1"
@@ -52,10 +54,14 @@ zxing-android-embedded = { group = "com.journeyapps", name = "z
androidx-navigation-compose = { group = "androidx.navigation", name = "navigation-compose", version.ref = "navigationCompose" }
androidx-lifecycle-runtime-compose = { group = "androidx.lifecycle", name = "lifecycle-runtime-compose" }
androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
room-runtime = { group = "androidx.room", name = "room-runtime", version.ref = "room" }
room-ktx = { group = "androidx.room", name = "room-ktx", version.ref = "room" }
room-compiler = { group = "androidx.room", name = "room-compiler", version.ref = "room" }
[plugins]
android-application = { id = "com.android.application", version.ref = "agp" }
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }