Difference between revisions of "IOSCompile"
(→Deploy) |
|||
Line 30: | Line 30: | ||
Better to have a look at the usage() function in compileVLCforiOS.sh, you might need -s to enable debug, -l or -n to save some time when you need to rebuild the project. | Better to have a look at the usage() function in compileVLCforiOS.sh, you might need -s to enable debug, -l or -n to save some time when you need to rebuild the project. | ||
+ | |||
+ | You might encounter lots of issues, just google it. Sometimes the issues might be about the project itself or the dependenies (the latest git might change at anytime), please report to the irc or trac, sometimes you might have to wait for a patch | ||
== Deploy == | == Deploy == |
Revision as of 17:12, 19 January 2015
Contents
Development environment
To develop VLC for iOS, you need:
- Mac OS X Lion (or later)
- Latest XCode version (4.6.3 works so far)
- A correct shell (we recommend iTerm2 and zsh)
- CocoaPods (for dependency management)
Get the source
If you want to develop VLC for iOS, it is highly recommended that you use the git version:
git clone git://git.videolan.org/vlc-ports/ios.git
Build it
Build it for the simulator.
sh compileVLCforiOS.sh -s
Wait, and grab a coffee.
Manually assign the code sign in Xcode, and build it for devices.
sh compileVLCforiOS.sh
Grab a second coffee. :)
Better to have a look at the usage() function in compileVLCforiOS.sh, you might need -s to enable debug, -l or -n to save some time when you need to rebuild the project.
You might encounter lots of issues, just google it. Sometimes the issues might be about the project itself or the dependenies (the latest git might change at anytime), please report to the irc or trac, sometimes you might have to wait for a patch
Deploy
Open the .xcworkspace (not .xcodeproj) in Xcode and click on Run.
Buliding release version needs code signing
Before running simulator in Xcode, run .sh with -s first; Before running iphoneos in Xcode, run .sh without -s first.
Send patches
You can create patches and send them to our mailing list ios@v.o, or on our IRC.
Please see Git#Submitting_patches on how to send patches...
Notes
If everything goes well, congratulations to Lucky You! If not, please report any problem to our mailing list ios@v.o, or on our IRC.
This might help you more than Google, because any lately committing might cause compiling errors(at least these days), although the latest git is supposed to be an all time stable one.
History
The first version of this howto was written by jb on 18 July 2013.
Last edited by leoujzwiki on 12 Oct 2013.
Previous Version
The old version of the app can be compiled using this howto.