Anybody know how to use Jailcoder for running ios apps in jailbroken iPhone.I am using xcode4.2 and ios5
Don't know about Jailcoder
But what I do, is I compile the app without codesigning.
Then I open the terminal and cd into the app folder
Code:
cd /directory/to/yourapp.app
Then I run ldid and chmod 755 on the app
Code:
ldid -S yourapp
sudo chmod 755 yourapp
of course it requires that you install ldid, which is available lots of places, chmod is already installed in Mac and Linux.
Then having SSH installed on the phone i copy it over using scp, remember to stepp out of the app folder first. And you use -r (as in recursive) as an option in scp to copy the whole folder.
Code:
cd ..
scp -r yourapp.app root@<your.phones.ip.address>:/Applications
it will promt you password on the phone, which is alpine as default, you should change that
EDIT:
a one-time only, you need to edit a settings file in Xcode to allow compiling with unsigned as selected.
With the newest Xcode installed, this should be something like
open Applications on your Mac, right click Xcode and Show Package Contents
go down these folders
Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk/
and open SDKSettings.plist
under DefaultProperties, change CODE_SIGNING_REQUIRED to NO
Everything is case sensitive.