Raj Pawan Gumdal
Raj Pawan Gumdal

Reputation: 7438

iPhone simulator sandbox location in Xcode 4

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!!!

Upvotes: 20

Views: 21851

Answers (4)

ipraba
ipraba

Reputation: 16543

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

Upvotes: 25

SAQIB SOHAIL BHATTI
SAQIB SOHAIL BHATTI

Reputation: 79

You can find that in the following path:

/Users/User/Library/Developer/Xcode/DerivedData/Your-Project-Name/Build/Products/Debug-iphonesimulator/location.app

Upvotes: 2

osnewb
osnewb

Reputation: 71

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

Upvotes: 2

Lorenxs
Lorenxs

Reputation: 21

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>

Upvotes: 2

Related Questions