Can't debug the application
See original GitHub issueFollowed the project setup step by step and created a very minimal project. When I start debugging I get the error:
Process terminated without establishing connection to debugger. application descriptor not found
Here is my launch.json:
{
"version": "0.2.0",
"configurations": [
{
"type": "swf",
"request": "launch",
"name": "Launch SWF",
"profile": "mobileDevice",
"screensize": "iPhoneRetina",
"screenDPI": 326,
"versionPlatform": "IOS"
},
{
"type": "swf",
"request": "attach",
"name": "Attach SWF"
}
]
}
I can see that VS Code can see the sdk from the lower right corner of the VSCode window.
EDIT: Building works fine using “ActionScript: compile debug build” task.
Issue Analytics
- State:
- Created 5 years ago
- Comments:24 (13 by maintainers)
Top Results From Across the Web
Not Able To Debug App In Android Studio - Stack Overflow
One case where you can be unable to debug an application in Android Studio is when you have the "release" build variant selected....
Read more >Cannot debug ASP.NET web applications - Microsoft Learn
This article helps you resolve the problem where you can't debug an ASP.NET application in Microsoft Visual Studio .NET.
Read more >Can't debug Android apps after update: This application does ...
I get the following error: Cannot debug application com.ineoquest.pegasus.sample on device asus-nexus_7-0a019bc5. This application does not have the debuggable ...
Read more >Debug your app - Android Developers
Debug your app ; Start debugging. Attach the debugger to a running app ; Use the system log. Write log messages in your...
Read more >Can't debug node application · Issue #99526 · microsoft/vscode
"debug" produces the same behaviour as my launch configuration. "start" does start the application but debugging obviously isn't working.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Inside launch.json, give the absolute path a try:
Finally! I thought I tried this but it seems I haven’t!
Thank you @joshtynjala!