Files
AndrOBD/.vscode/tasks.json
2019-02-04 12:47:27 +01:00

20 lines
500 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"type": "shell",
"command": "gradle assembleDebug",
"group": "build",
"problemMatcher": []
},
{
"label": "clean",
"type": "shell",
"command": "gradle clean",
"group": "build"
}
]
}