I have an Apple developer certificate. I'm trying to install my application in the /Applications on my jailbroken iPhone so I can access the SMS.db database. I've tried several different variations of using no certificate but signing with ldid, and signing with my iOS App Store distribution certificate. My app always crashes on launch and nothing seems to work. If I have an Apple developer certificate, what's the easiest way to get the app into /Applications? Do I still have to do the ldid signing? I'm using XCode4, SDK 4.3 and iOS 4.1 on an iPhone 4.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
I did some research about this for my own app that needed access to the whole file system on the jailbroken device. You can't install your app by normal means of installing an .ipa file to /Applications. Your crash is most likely related to sandboxing, so it would look something like this:
I solved this by converting my .ipa package to a .deb package and installing it via dpkg. This way you can create any layout you want. Here's the gist of the solution: Create layout for the debian packager to work with:
Unzip the .ipa package:
Create layout file:
Make a .deb package:
Show what's inside of the .deb package we just built:
Then deploy via ssh:
|
|||||||||
|
|
Try using http://jailcoder.com/ it automates the entire process |
|||
|
|
/Applicationsfolder? Were the permission on the executable set up correctly? Is there a crash log reported if you downloadCrashReporterapp from cydia? – apple16 Jun 2 '12 at 20:39