1

I am new in iPhone.I am developing iPhone application. My iPhone is jailbreak, I want to use a message history from my jailbreak device. But i can't used that message history. So I want to give root access permission to my application for access SMS history. How can I do it, How can I give root permission to my application. Thank You for your answer.

Mohit Raval
  • 440
  • 1
  • 6
  • 19
  • 1
    possible duplicate of [Once jailbroken, will iOS apps run with root privilege?](http://stackoverflow.com/questions/15968845/once-jailbroken-will-ios-apps-run-with-root-privilege) – borrrden Oct 22 '13 at 05:28
  • possible duplicate of [Gaining root permissions on iOS for NSFileManager (Jailbreak)](http://stackoverflow.com/questions/7841344/gaining-root-permissions-on-ios-for-nsfilemanager-jailbreak) – Nate Oct 22 '13 at 10:07

1 Answers1

0

After compiling, unzip the ipa and drop the .app folder in "Payload" into /Applications. Now run chmod -R 777 /Applications/<YourAppName> This should get rid of Apple's sandbox and let you take advantage of your jailbreak. You might even want to consider packaging it into a .deb file so that others can install it like this automatically.

Taconut
  • 951
  • 4
  • 10
  • 29