Install the application on iphone simulator

How can we install the .app file in iphone simulator without any source code?

+5
source share
2 answers

Yes, it can be done.

If you open Finder and go to / Users / user / Library / Application Support / iPhone Simulator / iOS version / Applications, you will find directories for all applications installed on the simulator.

Just close this top-level folder for the application and ask another user to delete it in the same directory. It works like a charm.

NOTE. I think you may have to compile it for this particular version of iOS before sending it to them.

: iOS ?

+6

.app iOS-.

1: iOS-      iOS-

   1. Using XCODE: Open Xcode and navigate to 
      **XCODE => Open Developer Tool => iOS Simulator**

   2: Using Terminal: Type following command in terminal 
      **open -a "iOS Simulator" --args -CurrentDeviceUDID <Device UDID>** 

. DeviceUDID. UDID , :

xcrun simctl list

UDID - - , "Booted" "Shutdown".

2: :       , .app

xcrun simctl install booted

3: :             1.       2.

xcrun simctl

+1

All Articles