Created
September 1, 2025 16:31
-
-
Save bmatheus91/5edba1aaef2738b664153aff7ca15194 to your computer and use it in GitHub Desktop.
launch.json for Multiple devices
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 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": "hering_app_flutter", | |
"request": "launch", | |
"type": "dart" | |
}, | |
{ | |
"name": "Android SE", | |
"request": "launch", | |
"type": "dart", | |
"deviceId": "emulator-5554" | |
}, | |
{ | |
"name": "Iphone SE", | |
"request": "launch", | |
"type": "dart", | |
"deviceId": "DF8A99B4-ACFC-4760-BC64-30EA9F66C616" | |
}, | |
{ | |
"name": "Iphone 16 Plus", | |
"request": "launch", | |
"type": "dart", | |
"deviceId": "18E20FA2-3773-4562-B30A-F439DAF3D656" | |
}, | |
], | |
"compounds": [ | |
{ | |
"name": "All Devices", | |
"configurations": [ | |
// "Android SE", | |
"Iphone SE", | |
"Iphone 16 Plus", | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment