up vote 45 down vote favorite
46
share [g+] share [fb]

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

link|improve this question

7% accept rate
42  
Has someone answered your question? Give them credit. – JoePasq Oct 19 '09 at 0:05
6  
3  
Re-enforcing both comments, philfreo link actually have the answer to same question, and DFG seem to just dont care about "accepting" an answer, ever. he's on his right, tho. – Cawas Nov 14 '10 at 20:59
feedback

protected by Marc Gravell Dec 27 '10 at 12:21

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

12 Answers

up vote 27 down vote accepted

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

link|improve this answer
2  
very smart - using Cydia. – Spark Mar 15 '10 at 9:58
1  
Yes, you'll need to jailbreak your device for this method to work. (obviously) – esqew Jul 4 '10 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 leadgy Jan 21 '11 at 22:15
tanderson: there is an ldid package in Cydia and you can compile one for OS X – rpetrich Jan 23 '11 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. – Cawas Apr 16 '11 at 16:06
feedback

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

2. Enable Xcode's to Build on Jailbroken Device

  1. On your jailbroken iPhone, install the app AppSync by adding source http://cydia.hackulo.us

  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. In the XCode project settings, you may need to change the Base SDK setting from iphoneos to one of the valid iOS SDKs values (e.g., iOS 4.3 or iOS 5.0)

And if you're on iOS 5, that's it! Try it now!

It actually won't allow debugging, but the app will be installed and work just fine! 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 haven't even tried it.*

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

.

.


.

.

.

2a. Continuing XCode hacking for older SDK

  1. On the last step 2.2 above, pay attention to the iPhoneOS5.0.sdk part. If you're 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
    
  2. 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.

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

  4. 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 steps 1 and 2:

sudo mv -f /Developer/Platforms/iPhoneOS.platform/Info.plist.bak /Developer/Platforms/iPhoneOS.platform/Info.plist
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 step 2a:

Sorry, you're on your own. The idea is the same from above, though. Restore the original files.

link|improve this answer
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 Aug 10 '11 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 Aug 10 '11 at 5:34
2  
is there updated version for iOS5 SDK ? – xx77aBs Nov 11 '11 at 21:04
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 Dec 27 '11 at 21:26
feedback

You'll have to jailbreak your device.

link|improve this answer
6  
and then what... – philfreo Nov 17 '09 at 0:24
1  
Follow @rpetrich's method and SSH the executable into the device's /Applications folder, it should work after a reboot/respring. – esqew Jul 4 '10 at 18:57
feedback

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

link|improve this answer
feedback

See this answer to a question I asked earlier for a very good guide on how to put it on your jailbroken iPhone.

link|improve this answer
yup. this solves it. but DFG question was way simpler and straight to the point. ;) – Cawas Nov 14 '10 at 21:04
feedback

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

link|improve this answer
also a perfect guide, with a different approach from @Dan... I used both, tho. – Cawas Nov 14 '10 at 21:05
feedback

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

link|improve this answer
feedback

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.

link|improve this answer
4  
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 Jan 14 '10 at 5:43
feedback

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.

link|improve this answer
Yes you can add up team members. There's a limit of 200 devices per year. – Cawas Feb 9 '11 at 15:55
Cawas - Do you know how to add a member to your apple id ? – Learner Feb 10 '11 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. – Cawas Apr 1 '11 at 18:59
feedback

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.

link|improve this answer
feedback

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

link|improve this answer
feedback

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.

link|improve this answer
feedback

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