Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

XCode 4.4 "Permission denied" when trying to download Application Data

After updating my XCode to version 4.4 it seems to be impossible to retrieve Application Data from my devices.

In Xcode 4.3 (and all previuos version) I downloaded my Application Data (like SQLite databases and files I created) through the organizer (Organizer -> Devices -> "Device" -> Applications -> "Application" -> Download).

With Xcode 4.4 i get an error ("Permission Denied") when I try to download the Documents from the sandbox.

Is there anything new (maybe a new setting?) I have to change to obtain the Application Data from my device again?

like image 570
Jörn Buitink Avatar asked Jul 26 '12 09:07

Jörn Buitink


1 Answers

Temporary fix is using itunes to get the files from the document folder.

In your .plist -> Information property list -> add:

UIFileSharingEnabled (YES)

Rebuild and go to itunes and get the files from document folder.

like image 65
Wei Chong Avatar answered Sep 20 '22 10:09

Wei Chong