bollwerk/.vscode/tasks.json

38 lines
773 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Android: Build Debug",
"type": "shell",
"command": "./gradlew",
"args": ["assembleDebug"],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"clear": true
},
"problemMatcher": []
},
{
"label": "Android: Run Tests",
"type": "shell",
"command": "./gradlew",
"args": ["test"],
"group": "test",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"clear": true
},
"problemMatcher": []
}
]
}