ente/.vscode/launch.json

19 lines
538 B
JSON
Raw Normal View History

2020-03-24 19:59:36 +00:00
{
// 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": "Flutter",
"request": "launch",
2020-05-04 15:35:03 +00:00
"type": "dart",
2021-01-13 17:38:24 +00:00
"flutterMode": "debug",
2021-05-22 21:21:44 +00:00
"program": "lib/main.dart",
"args": [
"--flavor",
"playstore"
]
2020-03-24 19:59:36 +00:00
}
]
}