Max Raskin
Max Raskin

Reputation: 1052

Unable to install and run iOS app on Simulator from command line - Simulator of iOS 6.1 Xcode 5 on mavericks

I've tried various methods and scripts to launch my iOS compiled app via commandline but unable to do so, help will be appreciated.

I tried the following:

  1. This command line:

    ./Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app/Contents/MacOS/iPhone\ Simulator -SimulateApplication App.app/App
    
  2. This shell script

Attempted on:

No luck :/

Upvotes: 6

Views: 5283

Answers (1)

plu
plu

Reputation: 1351

You could use ios-sim (can be installed via Homebrew brew install ios-sim):

ios-sim launch <application path>

Upvotes: 13

Related Questions