Created
June 13, 2022 13:52
-
-
Save rutvik110/132f819b420db7d2855a142621c25423 to your computer and use it in GitHub Desktop.
launch.json cofigurations for nativeshell
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": "Flutter: Attach to Process", | |
"type": "dart", | |
"request": "attach", | |
"osx": { | |
"serviceInfoFile": "${env:TMPDIR}vmservice.nativeshell_examples", | |
}, | |
"windows": { | |
"serviceInfoFile": "${env:TEMP}/vmservice.nativeshell_examples" | |
}, | |
"linux": { | |
"serviceInfoFile": "${env:XDG_RUNTIME_DIR}/vmservice.nativeshell_examples" | |
} | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment