vote up 21 vote down star
23

I've been looking into iPhone development, but I've been having problems coming up with the answer to a certain question.

If I create an application on my Mac, is there any way I can get it to run on an iPhone without going through the app store?

It doesn't matter if the iPhone has to be jailbroken, as long as I can still run an application created using the official SDK. For reasons I won't get into, I can't have this program going through the app store.

Thanks for any help you can give!

flag

6 Answers

vote up 33 vote down check

For a standard iPhone you'll need to pay the US$99/yr to be a member of the developer program. You can then use the adhoc system to install your application onto up to 100 devices. The developer program has the details but it involves adding UUIDs for each of the devices to your application package. UUIDs can be easiest retrieved using Ad Hoc Helper available from the App Store. For further details on this method, see Craig Hockenberry's Beta testing on iPhone 2.0 article

For jailbroken iPhones, you can use the following method which I have personally tested using the AccelerometerGraph sample app on both iPhone OS 2.0.2 and iPhone OS 2.1.

The following steps require openssh, ldid and com.bigboss.respring to be installed first. Replace jasoniphone.local with the hostname of the target device. Be sure to set your own password on both the mobile and root users after installing SSH.

  1. Project, Set Active SDK, Device

  2. Compile your project normally (using Build, not Build & Go).

  3. In the build/Release-iphoneos directory you will have an app bundle. Use your preferred method to transfer this to /Applications on the device.

    scp -r AccelerometerGraph.app root@jasoniphone:/Applications/

  4. SSH to the phone and fake sign the executable binary:

    ssh root@jasoniphone.local ldid -S /Applications/AccelerometerGraph.app/AccelerometerGraph

  5. Let SpringBoard know the new application has been installed. Either run Respring from the SpringBoard or issue the following command:

    ssh root@jasoniphone.local /Applications/Respring.app/respring

    This only has to be done when you add or remove applications. Updated applications just need to be relaunched.

To make life easier for yourself during development, you can setup SSH key authentication and add these extra steps as a custom build step in your project.

Note that if you wish to remove the application later you cannot do so via the standard SpringBoard interface and you'll need to use SSH and Respring after:

ssh root@jasoniphone.local 'rm -r /Applications/AccelerometerGraph.app && /Applications/Respring.app/respring'

link|flag
1  
The "uicache" command included with the "uikittools" package also works in 2.1 to refresh the Springboard's application list. – Jason Weathered Oct 30 '08 at 23:44
vote up 5 vote down

Yes, Once you have joined the iPhone Developer Program,and paid Apple $99, you can transfer your application to up to 100 iPhones or iPod touches.

link|flag
Why is there a 100 install limit? – Marcus Leon Apr 5 at 22:00
1  
So people can't use this as a way to bypass the App store entirely. – willc2 May 22 at 3:46
vote up 2 vote down

one person's story of getting an app on the iphone

link|flag
vote up 0 vote down

i have same problem.. Is there any one who has this certificate and working application on iphone? If yes than i want the procedure for this.

link|flag
vote up 0 vote down

It's worth noting that if you go the jailbroken route, it's possible (likely?) that an iPhone OS update would kill your ability to run these apps. I'd go the official route and pay the $99 to get authorized. In addition to not having to worry about your apps being clobbered, you also get the opportunity (should you choose) to release your apps on the store.

link|flag
vote up -1 vote down

OK, I made those steps but, when I run the application on the iPhone it start, shows the Default.png screen and then is close suddenly (I try this with my application and with UICatalog app).

link|flag
This happens to me if the binary is not fake signed. If ldid is working, you should be getting no output from ldid and the timestamp will update on the binary. – Jason Weathered Oct 30 '08 at 21:28

Your Answer

Get an OpenID
or

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