What is the command to stop running after using cordova run ios in terminal?
I found one topic about this with 1 answer saying it\'s quit b
I had a similar problem when running ionic cordova run browser. pushing CTRL-C just killed the terminal process but server was running in the background.
My solution on the mac was to go to activity monitor and kill process called node.
I'm still finding this is an issue with Cordova 5.1.1 CLI.
I found pressing Ctrl+Z in the terminal window running lldb worked for me.
Xcode shouldn't be running if you are building your project using cordova cli. This will most likely solve your problem.
In my case, that depends on the way I run the app.
If I run the app using phonegap run ios, I must press Ctrl + C; but if I run using cordova run ios, I can also exit typing quit or exit in lldb (after the app runs), and then press Y.
As a side note: When I exit pressing Ctrl + C, and then unplug my device and delete the app, after plug my device again lldb attempt to install the app again, without asking. That does not happen when I exit typing exit.