Files
mobile-android/.vscode/tasks.json
senseiGai 60551a5637 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
2026-01-11 13:14:45 +05:00

35 lines
702 B
JSON

{
"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": []
}
]
}