mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-07 21:48:14 -08:00
## 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>
87 lines
No EOL
1.5 KiB
JSON
87 lines
No EOL
1.5 KiB
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Fladder Development (debug)",
|
|
"request": "launch",
|
|
"type": "dart",
|
|
"args": [
|
|
"--flavor",
|
|
"development"
|
|
]
|
|
},
|
|
{
|
|
"name": "Fladder Production (debug)",
|
|
"request": "launch",
|
|
"type": "dart",
|
|
"args": [
|
|
"--flavor",
|
|
"production"
|
|
]
|
|
},
|
|
{
|
|
"name": "Fladder Development (profile mode)",
|
|
"request": "launch",
|
|
"type": "dart",
|
|
"flutterMode": "profile",
|
|
"args": [
|
|
"--flavor",
|
|
"development"
|
|
]
|
|
},
|
|
{
|
|
"name": "Fladder Production (profile mode)",
|
|
"request": "launch",
|
|
"type": "dart",
|
|
"flutterMode": "profile",
|
|
"args": [
|
|
"--flavor",
|
|
"production"
|
|
]
|
|
},
|
|
{
|
|
"name": "Fladder Development (release mode)",
|
|
"request": "launch",
|
|
"type": "dart",
|
|
"flutterMode": "release",
|
|
"args": [
|
|
"--flavor",
|
|
"development"
|
|
]
|
|
},
|
|
{
|
|
"name": "Fladder Production (release mode)",
|
|
"request": "launch",
|
|
"type": "dart",
|
|
"flutterMode": "release",
|
|
"args": [
|
|
"--flavor",
|
|
"production"
|
|
]
|
|
},
|
|
{
|
|
"name": "Web",
|
|
"request": "launch",
|
|
"type": "dart",
|
|
"deviceId": "chrome",
|
|
"args": [
|
|
"--web-port",
|
|
"9090"
|
|
],
|
|
},
|
|
{
|
|
"name": "Web (release mode)",
|
|
"request": "launch",
|
|
"type": "dart",
|
|
"deviceId": "chrome",
|
|
"flutterMode": "release",
|
|
"args": [
|
|
"--web-port",
|
|
"9090"
|
|
],
|
|
},
|
|
],
|
|
} |