feat: Add Kotlin KAPT plugin and update dependencies in build.gradle.kts

chore: Update clean task to use layout.buildDirectory in top-level build.gradle.kts
chore: Add VS Code settings and tasks for improved development experience
docs: Create DEVELOPMENT.md with setup instructions and available commands
This commit is contained in:
senseiGai
2026-01-11 13:14:45 +05:00
parent 5b298a37b3
commit 60551a5637
4 changed files with 63 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
id("org.jetbrains.kotlin.kapt")
}
android {
@@ -91,7 +92,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")