change launch.json
This commit is contained in:
parent
cc548e4fe4
commit
753c730588
1 changed files with 37 additions and 0 deletions
37
.vscode/launch.json
vendored
Normal file
37
.vscode/launch.json
vendored
Normal file
|
|
@ -0,0 +1,37 @@
|
||||||
|
{
|
||||||
|
// 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": "pharmacy_mobile",
|
||||||
|
// "request": "launch",
|
||||||
|
// "type": "dart"
|
||||||
|
// },
|
||||||
|
{
|
||||||
|
"name": "pharmacy_mobile",
|
||||||
|
"request": "launch",
|
||||||
|
"type": "node-terminal",
|
||||||
|
"command": "fvm flutter run --no-enable-impeller",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "build apk",
|
||||||
|
"request": "launch",
|
||||||
|
"type": "node-terminal",
|
||||||
|
"command": "fvm flutter build apk --target-platform android-arm64",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "pharmacy_mobile (profile mode)",
|
||||||
|
"request": "launch",
|
||||||
|
"type": "dart",
|
||||||
|
"flutterMode": "profile"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "pharmacy_mobile (release mode)",
|
||||||
|
"request": "launch",
|
||||||
|
"type": "dart",
|
||||||
|
"flutterMode": "release"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue