Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iPhone simulator sandbox location in Xcode 4

Tags:

xcode4

Xcode 4 seems to have changed the deployment location of the application data which previously used to be in: Users/INSERT_YOUR_USER_HERE/Library/Application Support/iPhone Simulator/

Does anybody knows where is it now?

Thanks, Raj

PS: I am beginning to hate Xcode 4! Sick!!!

like image 249
Raj Pawan Gumdal Avatar asked Mar 31 '11 08:03

Raj Pawan Gumdal


3 Answers

The Application is Sandboxed in the location you specified is correct.

/Users/INSERT_YOUR_USER_HERE/Library/Application Support/iPhone Simulator/

That is this is the place where the Application(.app file) the installation file will be there.

I was wondering that you were searching for the build file or the binary file(.ipa). In Xcode4 they have changed it. Previously in Xcode 3 versions the build file will be in the folder where you have created your Project along with all your .h and .m files.

Now the build file is in this Path

/Users/YOURUSER/Library/Developer/Xcode/DerivedData/YOURPROJECTNAME_SOMETHINGSOMETHING/Build/Products

EDIT: More simple solution would be In the left side Navigator window in the Project structure under the Products Folder you will find your app. Right click on that and select open in finder will you take you to folder containing your app .app file.

If you want .ipa file just drag and drop the .app file into itunes it will convert that into itunes file and again rightclik and show in finder will give you the ipa file

like image 132
ipraba Avatar answered Nov 17 '22 00:11

ipraba


On my mac the folder never changed. The sandbox of each application i have in the simulator can be found in:

${HOME}/Library/Application Support/iPhone Simulator/<SDK_VERSION>/Applications/<GUID>
like image 2
Lorenxs Avatar answered Nov 16 '22 23:11

Lorenxs


If you right click on YOUR_APP_NAME.app file in xcode, it will take you to the sandbox folder.

like image 2
osnewb Avatar answered Nov 17 '22 00:11

osnewb