how to stop after “cordova run ios”

后端 未结 10 857
我在风中等你
我在风中等你 2020-12-16 20:12

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

相关标签:
10条回答
  • 2020-12-16 20:34

    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.

    0 讨论(0)
  • 2020-12-16 20:37

    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.

    0 讨论(0)
  • 2020-12-16 20:45

    Xcode shouldn't be running if you are building your project using cordova cli. This will most likely solve your problem.

    0 讨论(0)
  • 2020-12-16 20:48

    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.

    0 讨论(0)
提交回复
热议问题