ente/.vscode/launch.json
2021-08-23 02:54:17 +05:30

50 lines
1.4 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": "Android Prod",
"request": "launch",
"type": "dart",
"flutterMode": "debug",
"program": "lib/main.dart",
"args": [
"--flavor",
"independent"
]
},
{
"name": "Android Local",
"request": "launch",
"type": "dart",
"flutterMode": "debug",
"program": "lib/main.dart",
"args": [
"--flavor",
"independent",
"--dart-define",
"endpoint=http://localhost:8080",
]
},
{
"name": "iOS Prod",
"request": "launch",
"type": "dart",
"flutterMode": "debug",
"program": "lib/main.dart"
},
{
"name": "iOS Local",
"request": "launch",
"type": "dart",
"flutterMode": "debug",
"program": "lib/main.dart",
"args": [
"--dart-define",
"endpoint=http://localhost:8080",
]
},
]
}