Sharing iphone(build for XCode) application with Client

Team,
My client does not have a iphone and is asking me to share with the application so that he can run it on iphone simulator. I am able to generate the .app file using “build for xcode” option but have the following questions:

  1. Can i share this .app(build for xcode) version with my client to run on ios simulator
  2. If yes, how does it run it. In my case, corona does everything for me and opens it in ios simulator.
    Any other thoughts of sharing my app with the client?

Thx for reading.

cheers,
Bejoy [import]uid: 84539 topic_id: 19084 reply_id: 319084[/import]

This method works for me.

When you build for the Xcode Simulator with Corona, it will leave the build output file wherever you tell the build to place it.

Send that file ( it’s really a directory named yourappname.app ) to you client and tell them to run this command from the command line.

  
/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone\ Simulator.app/Contents/MacOS/iPhone\ Simulator -SimulateApplication path\_to\_your\_app/YourFavouriteApp.app/YourFavouriteApp  
  

backslashes are needed because of spaces in directory names [import]uid: 67839 topic_id: 19084 reply_id: 73633[/import]

@elbowroomapps - let me try it out…Thx for the prompt response. [import]uid: 84539 topic_id: 19084 reply_id: 73650[/import]