Fladder/.vscode/tasks.json
PartyDonut 758e369839
Android - Added separation for development/production builds (#43)
## Pull Request Description

Added a development build to so it's easier to develop alongside the
current release (Android only atm)

## Issue Being Fixed

Developing removing the actually installed fladder app

Issue Number: N/A

## Checklist

- [ ] If a new package was added, did you ensure it works for all
supported platforms? Is the package also well maintained?
- [ ] Did you add localization for any text? If yes, did you sort the
.arb file using ```arb_utils sort <INPUT_FILE>```?
- [ ] Check that any changes are related to the issue at hand.

Co-authored-by: PartyDonut <PartyDonut@users.noreply.github.com>
2024-10-18 18:33:02 +02:00

89 lines
No EOL
1.5 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Generate Localization",
"type": "dart",
"command": "flutter",
"args": [
"gen-l10n"
],
"isBackground": true,
"presentation": {
"reveal": "never",
"revealProblems": "onProblem",
"panel": "dedicated",
"showReuseMessage": false,
"clear": true,
"focus": false
},
"problemMatcher": []
},
{
"type": "flutter",
"command": "flutter",
"args": [
"build",
"windows"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [],
"label": "flutter: flutter build windows",
"detail": ""
},
{
"type": "flutter",
"command": "flutter",
"args": [
"build",
"macos"
],
"group": "build",
"problemMatcher": [],
"label": "flutter: flutter build macos",
"detail": ""
},
{
"type": "flutter",
"command": "flutter",
"args": [
"build",
"apk"
],
"group": "build",
"problemMatcher": [],
"label": "flutter: flutter build apk",
"detail": ""
},
{
"type": "flutter",
"command": "flutter",
"args": [
"build",
"aab"
],
"group": "build",
"problemMatcher": [],
"label": "flutter: flutter build aab",
"detail": ""
},
{
"type": "dart",
"command": "dart",
"args": [
"run",
"icons_launcher:create",
"--flavors",
"development,production"
],
"label": "dart: generate icons_launcher",
"detail": "",
"options": {
"cwd": "${workspaceFolder}"
}
}
],
}