161

How can I deploy an iPhone application from Xcode to real iPhone device without having a US$99 Apple certificate?

3

12 Answers 12

92

I've used a mix of two howtos: Jason's and alex's. With the second we have the advantage of being able to debug. I'll mostly just copy both below (and simplify alex's):

Update Jan 2012: this still works on SDK 4.2.1 and iOS 5.0.1 - I've just tested it all on a new computer and device!


1. Create Self-Signed Certificate

Patch your iPhone SDK to allow the use of this certificate:

  1. Launch Keychain Access.app. With no items selected, from the Keychain menu select Certificate Assistant, then Create a Certificate.

    • Name: iPhone Developer
    • Certificate Type: Code Signing
    • Let me override defaults: Yes
  2. Click Continue

    • Validity: 3650 days
  3. Click Continue

  4. Blank out the Email address field.

  5. Click Continue until complete.

    You should see "This root certificate is not trusted". This is expected.

  6. Set the iPhone SDK to allow the self-signed certificate to be used:

    sudo /usr/bin/sed -i .bak 's/XCiPhoneOSCodeSignContext/XCCodeSignContext/' /Developer/Platforms/iPhoneOS.platform/Info.plist
    

    If you have Xcode open, restart it for this change to take effect.

And if you're on iOS 5, that's it! Try it now! It may not allow debugging, but the app will be there!

I was very surprised by this because, as you should know, I've got no idea on what all those hackings are all about! All I did was improving a little bit what I found elsewhere, as I pointed.

So yeah, the whole method doesn't work the same way anymore and I couldn't bother to find a new one... Except for this, which uses a tool called Theos but I couldn't go through the whole process.

Finally, if you need to uninstall it for whatever reason, check the end of this post. In my case, I had to because I couldn't figure out why all of the blue this whole method stopped working, and I couldn't care anymore since we've already got the long waited license. (Freaking DUNS number takes so long...)

.

.


.

.

.

2. Enable Xcode's to Build on Jailbroken Device

  1. On your jailbroken iPhone, install the app AppSync by adding source ** http://repo.hackyouriphone.org**

  2. Remove SDK requirements for code sign and entitlements (I'm loving sed!):

    sudo /usr/bin/sed -i .bak '/_REQUIRED/N;s/YES/NO/' /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/SDKSettings.plist
    
  3. Pay attention to the iPhoneOS5.0.sdk part. If you're, for instance, using iOS 4.2 SDK, just replace it accordingly:

    sudo /usr/bin/sed -i .bak '/_REQUIRED/N;s/YES/NO/' /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/SDKSettings.plist
    
  4. Conclude the requirement removal through patching Xcode. This means binary editing:

    cd /Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Plug-ins/iPhoneOS\ Build\ System\ Support.xcplugin/Contents/MacOS/
    dd if=iPhoneOS\ Build\ System\ Support of=working bs=500 count=255
    printf "\xc3\x26\x00\x00" >> working
    /bin/mv -n iPhoneOS\ Build\ System\ Support iPhoneOS\ Build\ System\ Support.original
    /bin/mv working iPhoneOS\ Build\ System\ Support
    chmod a+x iPhoneOS\ Build\ System\ Support
    

    If you have Xcode open, restart it for this change (and last one) to take effect.

  5. Open "Project>Edit Project Settings" (from the menu). Click on the "Build" tab. Find "Code Signing Identity" and its child "Any iPhoneOS Device" in the list, and set both to the entry "Don't Code Sign":

    alt text

    After this feel free to undo step 3. At least in my case it went just fine.

  6. Setting Xcode to code sign with our custom made self-signed certificate (the first how-to). This step can probably be skipped if you don't want to be able to debug:

    mkdir /Developer/iphoneentitlements401
    cd /Developer/iphoneentitlements401
    curl -O http://www.alexwhittemore.com/iphone/gen_entitlements.txt
    mv gen_entitlements.txt gen_entitlements.py
    chmod 777 gen_entitlements.py
    

    Plug your iPhone in and open Xcode. Open Window>Organizer. Select the device from the list on the left hand side, and click "Use for development." You'll be prompted for a provisioning website login, click cancel. It's there to make legitimate provisioning easier, but doesn't make illegitimate not-provisioning more difficult.

    Now You have to do this last part for every new project you make. Go to the menu Project > New Build Phase > New Run Script Build Phase. In the window, copy/paste this:

    export CODESIGN_ALLOCATE=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/codesign_allocate
    if [ "${PLATFORM_NAME}" == "iphoneos" ]; then
    /Developer/iphoneentitlements401/gen_entitlements.py "my.company.${PROJECT_NAME}" "${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/${PROJECT_NAME}.xcent";
    codesign -f -s "iPhone Developer" --entitlements "${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/${PROJECT_NAME}.xcent" "${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/"
    fi
    

.

.


.

.

Uninstalling

For the 1st part:

sudo mv -f /Developer/Platforms/iPhoneOS.platform/Info.plist.bak /Developer/Platforms/iPhoneOS.platform/Info.plist

For the 2nd part:

sudo mv -f /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/SDKSettings.plist.bak /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/SDKSettings.plist
sudo mv -f iPhoneOS\ Build\ System\ Support.original iPhoneOS\ Build\ System\ Support

in case you did do the step 3 instead of 2, simply modify it accordingly as well:

sudo mv -f /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/SDKSettings.plist.bak /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/SDKSettings.plist

for the rest, is just reverting what you did on XCode and deleting /Developer/iphoneentitlements401/gen_entitlements.py if you want:

sudo rm -f /Developer/iphoneentitlements401/gen_entitlements.py
7
  • Tried following these instructions, but now 'Scheme' is of type My Mac 64 bit, and I don't have any option to run simulator or real iPhone anymore, so I can't even test the code. I was using SDK 4.3, not sure if that matters
    – nosatalian
    Commented Aug 10, 2011 at 5:25
  • 1
    Actually, update: after changing base SDK in project settings from iphoneos to iOS 4.3, things work. Although xcode says 'Error launching remote program: failed to get the task for process' I can launch the app by clicking on it.
    – nosatalian
    Commented Aug 10, 2011 at 5:34
  • 1
    I get this error: The identity used to sign the executable is no longer valid. ... (0xE8008018) Even when I put 3650 days to expire. It seems like the phone itself is doing a check.
    – Stephen
    Commented Dec 27, 2011 at 21:26
  • does this "patching XCode" trick work for 4.3.2 or it's gonna brake it
    – Gabor
    Commented Apr 6, 2012 at 9:04
  • 1
    Point 6. In my case I had to change the /Developer/iphoneentitlements401/gen_entitlements.py file permissions to get the normal user execute it. With this the procedure works perfectly.
    – abidibo
    Commented Jul 19, 2012 at 9:24
56

It sounds like the application isn't signed. Download ldid from Cydia and then use it like so: ldid -S /Applications/AccelerometerGraph.app/AccelerometerGraph

Also be sure that the binary is marked as executable: chmod +x /Applications/AccelerometerGraph.app/AccelerometerGraph

4
  • 3
    Yes, you'll need to jailbreak your device for this method to work. (obviously)
    – esqew
    Commented Jul 4, 2010 at 18:52
  • how do you launch the command ldid -S ...? do you need a SSH console for that? is there any free way to get a SSH client on a jailbroken IPhone?
    – Dan L.
    Commented Jan 21, 2011 at 22:15
  • tanderson: there is an ldid package in Cydia and you can compile one for OS X
    – rpetrich
    Commented Jan 23, 2011 at 3:26
  • rpetrich I believe his questions is how to type and use the command, not how to acquire the pack. @tanderson you can go through Open SSH (and then connect to the phone from your desktop) or a Terminal inside iPhone itself. Both apps are free downloads from Cydia. With SSH you have the advantage you can also use it to simply copy your app to the phone with it. If you do this a lot, be sure to check the other answers - you can make XCode do all the job to you but it's a troublesome procedure to trick it on doing that.
    – cregox
    Commented Apr 16, 2011 at 16:06
49

Free Provisioning after Xcode 7

In order to test your app on a real device rather than pay the Apple Developer fee (or jailbreak your device), you can use the new free provisioning that Xcode 7 and iOS 9 supports.

Here are the steps taken more or less from the documentation (which is pretty good, so give it a read):

1. Add your Apple ID in Xcode

Go to XCode > Preferences > Accounts tab > Add button (+) > Add Apple ID. See the docs for more help.

enter image description here

2. Click the General tab in the Project Navigator

enter image description here

3. Choose your Apple ID from the Team popup menu.

enter image description here

4. Connect your device and choose it in the scheme menu.

enter image description here

5. Click the Fix Issues button

enter image description here

If you get an error about the bundle name being invalid, change it to something unique.

6. Run your app

In Xcode, click the Build and run button.

enter image description here

7. Trust the app developer in the device settings

After running your app, you will get a security error because the app you want to run is not from the App Store.

enter image description here

On your device, go to Settings > General > Profile > your-Apple-ID-name > Trust your-Apple-ID-name > Trust.

8. Run your app on your device again.

That's it. You can now run your own (or any other apps that you have the source code for) without having to dish out the $99 dollars. Thank you, Apple, for finally allowing this.

4
  • 2
    thanks a lot. this worked perfectly without the paid Apple Developer License. Commented Apr 5, 2016 at 21:30
  • 2
    This does have some problems, though--you can only install up to 3 apps at a time, and you need to renew the certificate every week.
    – SilverWolf
    Commented Feb 6, 2018 at 23:10
  • 2
    @seaturtle, thanks for the update. I eventually forked out the money for the developer license so I haven't kept up to date on this answer. That's too bad about the limitations. There are some things about Android that are much nicer than Apple.
    – Suragch
    Commented Feb 7, 2018 at 0:58
  • 1
    On my iPhone running iOS 15 the setting for step 7 was under Settings > General > VPN & Device Management
    – John
    Commented Dec 10, 2021 at 1:43
9

You can't, not if you are talking about applications built with the official SDK and deploying straight from xcode.

8

You'll have to jailbreak your device.

1
  • 1
    Follow @rpetrich's method and SSH the executable into the device's /Applications folder, it should work after a reboot/respring.
    – esqew
    Commented Jul 4, 2010 at 18:57
6

There is a way to deploy iPhone apps without paying to apple You'll have to jailbreak your device and follow the instructions in http://www.alexwhittemore.com/?p=398

1
  • also a perfect guide, with a different approach from @Dan... I used both, tho.
    – cregox
    Commented Nov 14, 2010 at 21:05
5

Nothing I've seen anywhere indicates you can ad-hoc deploy to a real iPhone without a (paid for) certificate.

4

No, its easy to do this. In Xcode, set the Active Configuration to Release. Change the device from Simulator to Device - whatever SDK. If you want to directly export to your iPhone, connect it to your computer. Press Build and Go. If your iPhone is not connected to your computer, a message will come up saying that your iPhone is not connected.

If this applies to you: (iPhone was not connected)

Go to your projects folder and then to the build folder inside. Go to the Release-iphoneos folder and take the app inside, drag and drop on iTunes icon. When you sync your iTouch device, it will copy it to your device. It will also show up in iTunes as a application for the iPhone.

Hope this helps!

P.S.: If it says something about a certificate not being valid, just click on the project in Xcode, the little project icon in the file stack to the left, and press Apple+I, or do Get Info from the menu bar. Click on Build at the top. Under Code Signing, change Code Signing Identity - Any iPhone OS Device to be Don't Sign.

1
  • 7
    The OP does not have a signing certificate or provisioning profile. These instructions are for members if the $99 iPhone Developer Program but don't address the question of how to run on the device without signing up for the program.
    – cdespinosa
    Commented Jan 14, 2010 at 5:43
4

I was going through the Apple Developer last night and there in the Provisioning Certificate I found something like - "Signing Team Members". I think there is a way to add team members to the paid profile. You can just ask to the App Id Owner(paid one) to add you as a team member. I am not sure. Still searching on that.

3
  • Yes you can add up team members. There's a limit of 200 devices per year.
    – cregox
    Commented Feb 9, 2011 at 15:55
  • Cawas - Do you know how to add a member to your apple id ?
    – Akshay
    Commented Feb 10, 2011 at 5:57
  • we only get notifications if you add the @ before the name. As you said yourself, you have to first get a Paying Account. Then it should be really simple because I couldn't find any tutorial on how to do it. I never did it myself, tho.
    – cregox
    Commented Apr 1, 2011 at 18:59
2

This really all depends on what version of Xcode you are using as different versions use different methods to deploy to your iPhone without a provisioning profile.

Xcode 3.2.1 is a good version and is easy to sort out, but we need to know what version you are using.

2

Solution posted by Cawas works perfectly with XCode4, too. However, there are some changes to IDE's UI, so you need to make some research to find Run Script :)

In the Project Navigator view click the root item of the project, then in the middle window select Target, then click Build Phases tab and at the bottom you'll see Add Build Phase button, click and select Add Run Script, then paste "codesign" script posted by Cawas.

1

There is no workaround. You can only ad hoc deploy apps if they are registered with your device. This prevents you from building your own app store..

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