Firstly, I do not publish this application in the application store, and this is a jailbreak phone.
Does anyone know how to compile applications directly to the / Applications folder using Xcode? Currently, I have to compile the / var / mobile / Applications folder and copy it to the / Applications folder on the device. It would be very convenient if the application could be compiled directly into the / Applications folder. Google does not seem to have any results on this topic.
Thanks in advance...
jailbroken iPhone, , , , iPhone Mac, script Xcode, .
, iPhone /mnt/My iPhone
(p > Add Build Phase > Add Run script Phase), script - :
cd /var/mobile/Applications cp myappfile "/mnt/My iPhone/Applications/"
XCode , , ? OS X ln(1) manpage, -s .
ln(1)
-s
, /var/mobile/Applications/ , /Applications/, ( /Volumes/WakePhone/Applications/):
/var/mobile/Applications/
/Applications/
/Volumes/WakePhone/Applications/
rmdir /var/mobile/Applications ln -s /Volumes/WakePhone/Applications/ /var/mobile/Applications
, . .
, ? , .:)