ar_tourism_flutter_unity/.vscode/tasks.json
2025-05-14 17:04:13 +08:00

29 lines
415 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "dart",
"command": "dart",
"cwd": "",
"args": [
"doc",
"."
],
"problemMatcher": [],
"label": "dart: dart doc .",
"detail": ""
},
{
"type": "flutter",
"command": "flutter",
"args": [
"build",
"apk"
],
"group": "build",
"problemMatcher": [],
"label": "flutter: flutter build apk",
"detail": ""
}
]
}