How to test the application on my iPhone without an Apple Developer license?

This has been answered many times, but none of these answers are compatible with iOS 6. The only answers that mention iOS 6 use the Jailcoder tool, which does not work for me.

What I tried:

  • Create a fake code certificate.
  • Edit SDKSettings.plist
  • Used by Jailcoder to fix Xcode as well as my project

I am using Xcode 4.5.1 and iOS 6.0.1. Note that Xcode 4.5.1 does not have an SDK for 6.0.1, but I do not think it matters.

+6
source share
2 answers
  • Escape from your device (it looks like you have already taken this step).
  • Create an application in Xcode. Take the binary file that is compiled for iOS, not for the simulator.
  • Use the ldid utility to fake codes in binary format:

    ldid -S ~/Projects/Foo/Foo.app/Foo

  • Copy the .app folder (application package) to your device (for example, using SSH). Reload the list of applications (restart SpringBoard or use the uicache utility on the device).

  • Profit
+7
source

There is a better and easier way to do this. Download the Jailcoder.app app and click on “managed patch” or “quick patch”. Then the application will work for you, and you can directly select your iphone from the xcode organizer. On iPhone, you need to configure cydia AppSync for iOS 5.0+

0
source

All Articles