launch.json 414 B

123456789101112131415161718
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Debug QuickApp on Device",
  6. "type": "quickapp",
  7. "request": "launch",
  8. "device": "${command:quickapp.choose-device}",
  9. "cwd": "${workspaceRoot}",
  10. "logLevel": "log",
  11. "adbPort": 5037,
  12. "debugServerPort": 8088,
  13. "remoteDebug": true,
  14. "elementMode": false
  15. }
  16. ],
  17. "currentWidgetUri": "views/Index"
  18. }