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
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
.