show/hide this revision's text 4 Updated for iPhone OS 2.1

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

  6. Let SpringBoard for know the new application to appear on the main screenhas been installed. Either run Respring from the SpringBoard or issue the following command:

    ssh root@jasoniphone.local killall -HUP SpringBoard/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'

show/hide this revision's text 3 added 179 characters in body

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. Replace jasoniphone.local with the hostname of the target device.

  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. Restart SpringBoard for the application to appear on the main screen.

    ssh root@jasoniphone.local killall -HUP SpringBoard

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:

ssh root@jasoniphone.local rm -r /Applications/AccelerometerGraph.app

show/hide this revision's text 2 added 407 characters in body

For a standard iPhone you'll need to pay the US$99/yr to be a memory 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 jailbroken iPhones, you can use the following method which I have personally tested using the AccelerometerGraph sample app. Replace jasoniphone.local with the hostname of the target device.

  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. Restart SpringBoard for the application to appear on the main screen.

    ssh root@jasoniphone.local killall -HUP SpringBoard

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:

ssh root@jasoniphone.local rm -r /Applications/MyApp.appApplications/AccelerometerGraph.app

show/hide this revision's text 1