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

34
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,34 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build Debug APK",
"type": "shell",
"command": "./gradlew assembleDebug",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Clean Project",
"type": "shell",
"command": "./gradlew clean",
"problemMatcher": []
},
{
"label": "Build Release APK",
"type": "shell",
"command": "./gradlew assembleRelease",
"problemMatcher": [],
"group": "build"
},
{
"label": "Install Debug APK",
"type": "shell",
"command": "./gradlew installDebug",
"problemMatcher": []
}
]
}