Environment
Provide version numbers for the following components (information can be retrieved by running tns info in your project folder or by inspecting the package.json of the project):
- CLI: 5.1.0
- Cross-platform modules: 5.0.0
- Android Runtime: 5.0.0
- iOS Runtime: 5.0.0
To Reproduce
tns create testApp --js && cd testApp
tns debug ios --debug-brk (on Simulator)
- open the Chrome URL and don't resume the breakpoint.
- make a JS file change in order to trigger the LiveSync process.
- run
ctrl + c in order to terminate the debug command. (you will see Unable to apply changes on device: 631C5F81-3FC0-44DB-A4BE-0E0AC7BBA920. Error is: Command xcrun with arguments simctl get_app_container ... error in the output)
tns debug ios
- the command will hang on
Skipping prepare.
Expected behavior
The app should run on the Simulator, and you should be able to debug it.
Additional context
The issue is caused by xcrun simctl get_app_container which hangs and does not return a result.
Environment
Provide version numbers for the following components (information can be retrieved by running
tns infoin your project folder or by inspecting thepackage.jsonof the project):To Reproduce
tns create testApp --js && cd testApptns debug ios --debug-brk(on Simulator)ctrl + cin order to terminate the debug command. (you will seeUnable to apply changes on device: 631C5F81-3FC0-44DB-A4BE-0E0AC7BBA920. Error is: Command xcrun with arguments simctl get_app_container ...error in the output)tns debug iosSkipping prepare.Expected behavior
The app should run on the Simulator, and you should be able to debug it.
Additional context
The issue is caused by
xcrun simctl get_app_containerwhich hangs and does not return a result.