How do I remove app from iOS 8 Simulator from command line?

后端 未结 4 1343
挽巷
挽巷 2020-12-13 20:01

I have an automation running in the iOS Simulator that I have to remove before another run. How do I remove the app from the iOS Simulator from the command line?

For

4条回答
  •  心在旅途
    2020-12-13 20:19

    With Xcode 6.1, to uninstall an app, use the following command:

    xcrun simctl uninstall booted com.example.apple-samplecode.UICatalog
    

    where com.example.apple-samplecode.UICatalog is the bundle identifier of the application you wish to uninstall.

提交回复
热议问题