Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

Zaroth

macrumors newbie
Original poster
Feb 10, 2012
1
0
Hello all,

I'm using xCode 4.2.1 and I'm trying to deploy my app onto my iphone without a developers license, the project has already been fake code signed. My iPhone is 5.1 jailbroken with AppSync installed, I'm able to transfer my apps using iTunes, but I prefer to deploy them straight from xCode to my real iphone. Anyone know how?

Thanks,
Zaroth
 
The way I do it is to not code sign by doing the following:

Open /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/SDKSettings.plist
(or maybe a different version sdk in the path if yours differs)
If you're using a plist editor, expand "DefaultProperties" and change "CODE_SIGNING_REQUIRED" from "YES" to "NO".
or just text editor change:
Code:
<key>CODE_SIGNING_REQUIRED</key>
<string>[U]YES[/U]</string>
to say NO instead.

Restart Xcode if it's already open, then in your project's build settings change the CODE_SIGN_IDENTITY to "Don't Code Sign"

You should be able to run it on the ios device through Xcode then.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.