bbf9703303
* Fix Windows Bluetooth availability state in Release build * Make initialized private --------- Co-authored-by: Foti Dim <fdimanidis@gmail.com>
44 lines
1.2 KiB
JSON
44 lines
1.2 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": "example",
|
|
"cwd": "example",
|
|
"request": "launch",
|
|
"type": "dart"
|
|
},
|
|
{
|
|
"name": "example release",
|
|
"cwd": "example",
|
|
"request": "launch",
|
|
"type": "dart",
|
|
"flutterMode": "release"
|
|
},
|
|
{
|
|
"name": "example_mock",
|
|
"cwd": "example",
|
|
"request": "launch",
|
|
"type": "dart",
|
|
"args": [
|
|
"--dart-define",
|
|
"MOCK=true",
|
|
]
|
|
},
|
|
{
|
|
"name": "example_web",
|
|
"cwd": "example",
|
|
"request": "launch",
|
|
"type": "dart",
|
|
"program": "lib/main.dart",
|
|
"args": [
|
|
"-d",
|
|
"web-server",
|
|
"--web-hostname=127.0.0.1",
|
|
"--web-port=8080"
|
|
],
|
|
},
|
|
],
|
|
} |