feat: Update account creation flow to return DecryptedAccount and configure kapt for Room

This commit is contained in:
k1ngsterr1
2026-01-11 16:44:58 +05:00
parent 70ed7fbc6e
commit 161a4fe61b
3 changed files with 15 additions and 4 deletions

View File

@@ -1,6 +1,7 @@
plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
id("kotlin-kapt")
}
android {
@@ -79,7 +80,7 @@ dependencies {
// Room for database
implementation("androidx.room:room-runtime:2.6.1")
implementation("androidx.room:room-ktx:2.6.1")
annotationProcessor("androidx.room:room-compiler:2.6.1")
kapt("androidx.room:room-compiler:2.6.1")
// Biometric authentication
implementation("androidx.biometric:biometric:1.1.0")