From 753c7305889f171323b3050201e88a3459bbfd94 Mon Sep 17 00:00:00 2001 From: Patrick Alvin Alcala Date: Wed, 19 Mar 2025 17:53:07 +0800 Subject: [PATCH] change launch.json --- .vscode/launch.json | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..7c4a90d --- /dev/null +++ b/.vscode/launch.json @@ -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" + } + ] +} \ No newline at end of file