{ // 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": "run app", "request": "launch", "type": "dart" }, { "name": "run app terminal", "request": "launch", "type": "node-terminal", "command": "fvm flutter run", }, { "name": "run without impeller", "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", }, ] }