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
35 lines
702 B
JSON
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": []
|
|
}
|
|
]
|
|
}
|