Open
Description
I am getting different outcomes when launching an .app
with different devicetypeid
s.
$ ios-sim launch myapp.app --devicetypeid "com.apple.CoreSimulator.SimDeviceType.iPhone-6, 8.1" # => everything ok
$ ios-sim launch myapp.app --devicetypeid "com.apple.CoreSimulator.SimDeviceType.iPhone-5s, 8.1" # => everything ok
$ ios-sim launch myapp.app --devicetypeid "com.apple.CoreSimulator.SimDeviceType.iPhone-4s, 8.1"
Session could not be started: Error Domain=NSPOSIXErrorDomain Code=3 "Unable to run app in Simulator" UserInfo=0x7f91f250c900 {NSUnderlyingError=0x7f91f24459d0 "Failed to lookup the process ID of com.company.myapp after successful launch. Perhaps it crashed after launch.", NSLocalizedFailureReason=An error was encountered while running (Domain = NSPOSIXErrorDomain, Code = 3), NSLocalizedDescription=Unable to run app in Simulator}
Is there anyone else having troubles with this?