Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I test an iOS application on my ipod touch without registering for the apple developer program or jailbreaking my ipod?

Neither is a viable option at the moment.

I'd like to test on the device itself instead of the onscreen emulator, to see how it performs on an actual ipod.

share|improve this question

6 Answers

up vote 28 down vote accepted

Unfortunately, you can't. According to Apple's Documentation on iPhone certificates - iOS/iPhone certificates are only issued to members of the iOS developer program.

Those are the only two options. Without a paid developer account you won't be able to provision your device to run your app, and without jailbreaking your device you can't use the JB-enabled ways (whatever they are) to install your app on your device.

share|improve this answer
49  
Well that's stupid. It makes zero sense that you're unable to test your code on your own device. The device costs $300, shouldn't that be enough for Apple to let you test your apps on your own device? – Cyclone Feb 10 '11 at 2:59
13  
No, it is logical that it is this way. – Nic Hubbard Feb 10 '11 at 4:09
11  
@Cyclone : The device can't tell whether it's your code, or malware from someone else, unless you pay $99 for Apple to identify your code to your device. Consider the $300 to be a discounted price without developer privileges for the stock semi-secure OS. – hotpaw2 Feb 10 '11 at 7:18
@BoltClock: could you elaborate a bit more? My doubt is, if I get an official developer account, could I send my signed application to some friend or employee without a jailbreaked device so he can test it? Or even so isn't possible? – Neverbirth Nov 18 '11 at 11:35
2  
@Neverbirth or anyone else with this problem: see developer.apple.com/library/ios/#documentation/Xcode/Conceptual/… – btown Feb 9 '12 at 22:01

There's a way you can do this.

You will need ROOT access to edit the following file.

Navigate to /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk and open the file SDKSettings.plist.

In that file, expand DefaultProperties and change CODE_SIGNING_REQUIRED to NO, while you are there, you can also change ENTITLEMENTS_REQUIRED to NO also.

You will have to restart Xcode for the changes to take effect. Also, you must do this for every .sdk you want to be able to run on device.

Now, in your project settings, you can change Code Signing Identity to Don't Code Sign.

Your app should now build and install on your device successfully.

UPDATE:

There are some issues with iOS 5.1 SDK that this method may not work exactly the same. Any other updates will be listed here when they become available.

UPDATE:

New SDKSettings.plist location for the iOS 5.1 SDK:

/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.1.sdk/SDKSettings.plist

share|improve this answer
4  
This will build a non-signed app, but how are you going to install/run it on a non-jailbroken device? – David Gelhar Feb 10 '11 at 4:50
2  
It may install but it will never open. – Domness Jun 21 '11 at 19:19
4  
Yes, as of iOS5 it is still possible. You will still need ldid to fake code sign your binary. code.google.com/p/networkpx/downloads/detail?name=ldid – WrightsCS Nov 9 '11 at 20:52
3  
I've followed the steps you mentioned, connected the device and clicked build and run but I get the message 'No provisioned iOS device is connected. Please check the Organizer to view the status of any connected devices.' – TechnocraT Apr 5 '12 at 7:01
4  
the OP asked for a non jailbreak solution – indiekiduk Sep 12 '12 at 18:22
show 19 more comments

I never tried, but doing a google search, Jailcoder looks like a solution. The problem is the device need to be jailbroken. If anyone try this, please comment and let us know how it worked.

share|improve this answer
2  
Worked perfectly for me. Only annoying part is that they want you to approve the addition of some certificates to keychain without telling you exactly what they're doing. They look to be the same as if you were to try doing this as a manual process, though. It's pretty seamless. I went from a clean install of Xcode to one of my apps running on my iPhone in less than 5 minutes. I'm running Xcode 4 & iOS 5.0.1 Jailbroken. – cool_me5000 Jul 3 '12 at 11:07
Great! thanks for reply back @cool_me5000. Your experience with it will help other people who wants to give it a try. I will test it someday. – Firula Jul 3 '12 at 19:41
1  
URL has changed to jailcoder.tk, thanks @MatthewPearson – Firula Mar 20 at 14:31

The JailCoder references above point to a site that does not exist any more. Looks like you should use http://oneiros.altervista.org/jailcoder/ or https://www.facebook.com/jailcoder

share|improve this answer

just tested JailCoder www.jailcoder.com and i'm able to run and debug on jailbroken devices. You just need a fresh untouched install of xCode, if not, just uninstall and install xCode again and run JailCoder

share|improve this answer

It's worth the buck to apply for the Apple developer program. You will be able to use ad-hoc provisioning to distribute your app to testers and test devices. You're allowed to add 100 ad-hoc provisioning devices to your developer program.

share|improve this answer

protected by Community Oct 13 '11 at 15:39

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.

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