|
@@ -15,13 +15,21 @@
|
|
|
## Compile with your own VLCKit's build
|
|
|
1. Clone a VLCKit repository: `git clone https://code.videolan.org/videolan/VLCKit.git`
|
|
|
2. Inside your VLCKit folder, run the following command: `./buildMobileVLCKit.sh -a ${MYARCH}`
|
|
|
-MYARCH can be `i386` `x86_64` `armv7` `armv7s` or `aarch64`.
|
|
|
-Add `-d` for a debug build (to have valid stack straces and asserts).
|
|
|
-Add `-n` if you want to use you own VLC repository for VLCKit (See VLCKit README.md).
|
|
|
+
|
|
|
+ MYARCH can be `i386` `x86_64` `armv7` `armv7s` or `aarch64`.
|
|
|
+
|
|
|
+ Add `-d` for a debug build (to have valid stack straces and asserts).
|
|
|
+
|
|
|
+ Add `-n` if you want to use you own VLC repository for VLCKit (See VLCKit README.md).
|
|
|
+
|
|
|
3. Replace the MobileVLCKit.framework with the one you just build. Inside your vlc-ios folder, after a `podate update`, do:
|
|
|
-`cd Pods/MobileVLCKit-unstable/MobileVLCKit-binary`
|
|
|
-`rm -rf MobileVLCKit.framework`
|
|
|
-`ln -s ${VLCKit}/build/MobileVLCKit.framework`
|
|
|
+
|
|
|
+ `cd Pods/MobileVLCKit-unstable/MobileVLCKit-binary`
|
|
|
+
|
|
|
+ `rm -rf MobileVLCKit.framework`
|
|
|
+
|
|
|
+ `ln -s ${VLCKit}/build/MobileVLCKit.framework`
|
|
|
+
|
|
|
4. Hit "Build and Run".
|
|
|
|
|
|
## Errors you might encounter on the way
|