diff --git a/.vscode/launch.json b/.vscode/launch.json index ef589d233..974de11cb 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -15,12 +15,36 @@ "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", + ] + }, ] } \ No newline at end of file