Last active
December 16, 2022 11:17
-
-
Save eingress/71d6b1deaa4283437626541b4ae69695 to your computer and use it in GitHub Desktop.
VSCode Flutter launch.json
This file contains 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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Android Phone", | |
"request": "launch", | |
"type": "dart", | |
"deviceId": "Device Name" | |
}, | |
{ | |
"name": "Android Tablet", | |
"request": "launch", | |
"type": "dart", | |
"deviceId": "Device Name" | |
}, | |
{ | |
"name": "Apple iPad", | |
"request": "launch", | |
"type": "dart", | |
"deviceId": "Device Name" | |
}, | |
{ | |
"name": "Apple iPhone", | |
"request": "launch", | |
"type": "dart", | |
"deviceId": "Device Name" | |
}, | |
{ | |
"name": "Web", | |
"request": "launch", | |
"type": "dart", | |
"deviceId": "chrome" | |
} | |
], | |
"compounds": [ | |
{ | |
"name": "All Apple", | |
"configurations": ["Apple iPad", "Apple iPhone"] | |
}, | |
{ | |
"name": "All Android", | |
"configurations": ["Android Phone", "Android Tablet"] | |
}, | |
{ | |
"name": "All Devices", | |
"configurations": [ | |
"Apple iPad", | |
"Apple iPhone", | |
"Android Phone", | |
"Android Tablet" | |
] | |
}, | |
{ | |
"name": "All Platforms", | |
"configurations": [ | |
"Apple iPad", | |
"Apple iPhone", | |
"Android Phone", | |
"Android Tablet", | |
"Web" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment