Skip to content

Instantly share code, notes, and snippets.

@rutvik110
Created June 13, 2022 13:52
Show Gist options
  • Save rutvik110/132f819b420db7d2855a142621c25423 to your computer and use it in GitHub Desktop.
Save rutvik110/132f819b420db7d2855a142621c25423 to your computer and use it in GitHub Desktop.
launch.json cofigurations for nativeshell
{
// 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