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

share|improve this question
Did you check the reason for crash? What is the error message in debugger console? – Manu Aug 21 '11 at 4:00
What did you use to copy the app to the /Applications folder? Were the permission on the executable set up correctly? Is there a crash log reported if you download CrashReporter app from cydia? – apple16 Jun 2 '12 at 20:39

2 Answers

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:

Jun  2 15:16:10 unknown sandboxd[31] <Notice>: BlueTool(145) deny file-read-metadata /private/var/mobile

Process:         BlueTool [145]
Path:            /usr/sbin/BlueTool
Load Address:    0x7f000
Identifier:      BlueTool
Version:         ??? (???)
Code Type:       ARM (Native)
Parent Process:  BTServer [88]

Date/Time:       2012-06-02 15:16:10.275 -0500
OS Version:      iPhone OS 5.0.1 (9A405)
Report Version:  104

Backtrace:
0   libsystem_kernel.dylib          0x30604c0c stat + 12

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:

mkdir ./layout
mkdir ./layout/Applications
mkdir ./layout/DEBIAN
chmod 0755 ./layout/DEBIAN

Unzip the .ipa package:

unzip package.ipa -d ./layout/Applications/MyAppName.app/

Create layout file:

cat > ./layout/DEBIAN/control <<EOF
Package: MyAppName
Name: MyAppName
Depends: mobilesubstrate, preferenceloader, libstatusbar
Version: 1.0-0
Architecture: iphoneos-arm
Description: MyAppName application
Maintainer: Me
Author: Me
Section: Tweaks
EOF

chmod 0755 ./layout/DEBIAN/control

Make a .deb package:

<path-to-theos-bin>/dpkg-deb -b ./layout MyAppName.deb

Show what's inside of the .deb package we just built:

<path-to-theos-bin>/dpkg-deb -c ./layout MyAppName.deb

Then deploy via ssh:

scp MyAppName.deb root@<device-ip>:/var/tmp
ssh root@<device-ip> "dpkg -i /var/tmp/MyAppName.deb"
ssh root@<device-ip> "killall -9 \"SpringBoard\""
share|improve this answer
1  
Apps in the /Applications folder DO NOT have a <GUID-HERE> between the /Applications folder and the appname.app. Its just /Applications/Camera.app. – apple16 Jun 2 '12 at 20:42
@Epic_orange: You're right, corrected. Was compiling info from a long script – Yuriy Gettya Jun 2 '12 at 20:54
+1. You can finish the process with su mobile -c uicache, instead of actually killing SpringBoard altogether. – Nate Mar 19 at 9:50

Try using http://jailcoder.com/ it automates the entire process

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.