Nenhuma descrição

Jean-Baptiste Kempf 2c45c81726 Fix README.md indentation 7 anos atrás
Apple-TV 8dfff07420 Add dummy wide top shelf image for tvOS submission 8 anos atrás
PAPasscode 81d676d766 Passcode view: minor appearance improvement (close #14836) 9 anos atrás
Resources 7ba171e17e edited AppIcon extension and xibs for Appstore submission 7 anos atrás
SharedSources bc42962186 SharedLibrary: implement 'isDownloadable' flag 7 anos atrás
Sources 554ceb9995 NetworkListView: fix the tableview offset when navigate to back 7 anos atrás
Tools 0ef96cc16c Added a script that updates the Localizable file to include added Keys for translation and deletes 8 anos atrás
VLC WatchKit Native 11da3fca9d watch app: remove unneeded artwork 9 anos atrás
VLC WatchKit Native Extension 0cb9384b0d Watch extension: translate extension delegate from swift 2 to ObjC 9 anos atrás
VLC.xcodeproj a03c0f014f pods: bump MobileVLCKit and TVVLCKit versions 7 anos atrás
VLC.xcworkspace 564a07a5bd VLC-tvOS: move to cocoapods 9 anos atrás
share 124ad62242 add delete hint view to remote playback view controller which shows how files can be deleted once they wiggle 9 anos atrás
vlc-ios 7ba171e17e edited AppIcon extension and xibs for Appstore submission 7 anos atrás
.gitignore 66129350ce Check-in shared xcschemes 9 anos atrás
.mailmap 492b9447b4 fix mailmap 10 anos atrás
AUTHORS 4294791d85 Update authors and about contents 11 anos atrás
COPYING 671a7ca45f Add GPLv2+/MPLv2 license to the repo 12 anos atrás
Coding Style.rtf 9160341ab3 Update coding style for 'Modern' ObjC 12 anos atrás
NEWS 397f2cf36b updated the News that were used for Testflight submission 8 anos atrás
Podfile a03c0f014f pods: bump MobileVLCKit and TVVLCKit versions 7 anos atrás
Podfile.lock a03c0f014f pods: bump MobileVLCKit and TVVLCKit versions 7 anos atrás
README.md 2c45c81726 Fix README.md indentation 7 anos atrás
SharedConfig.xcconfig a55a435bd7 store MLKit group identifier in Info.plist so it can be easily changed via xcconfig and even after compilation 9 anos atrás
VLC WatchKit App.entitlements d0e2a085b3 replace hard coded group- and keychain-identifiers with user-defined build settings 9 anos atrás
VLC WatchKit Extension.entitlements d0e2a085b3 replace hard coded group- and keychain-identifiers with user-defined build settings 9 anos atrás
VLC-TV copy-Info.plist 564a07a5bd VLC-tvOS: move to cocoapods 9 anos atrás
VLC-iOS-Debug-Info.plist 99b3c5ffcc fix crash for saving video and moving code out of VLCLibraryViewcontroller 8 anos atrás
VLC-iOS-no-watch-Debug-Info.plist 99b3c5ffcc fix crash for saving video and moving code out of VLCLibraryViewcontroller 8 anos atrás
VLCMediaDataSource.h 7c94c41e94 first hit at seperating viewpresentation from the underlying media management. Moved the _foundmedia array into it's own class VLCMediaDataSource.m. 7 anos atrás
VLCMediaDataSource.m 7c94c41e94 first hit at seperating viewpresentation from the underlying media management. Moved the _foundmedia array into it's own class VLCMediaDataSource.m. 7 anos atrás
VLCTrackSelectorView.h 96f81a4f50 move TrackselectorView out of the MovieViewController 7 anos atrás
VLCTrackSelectorView.m 562cfa4acc adjust position for playbackspeedview to not be hidden behind controlpanel 7 anos atrás
compileDebugLibraries.sh d837ab0ed8 build script: fix syntax error 9 anos atrás

README.md

How to start development for VLC for iOS:

Requirements

Let's compile!

  1. Run pod update
  2. Open VLC for iOS.xcworkspace.
  3. Change BUNDLE_IDENTIFIER_PREFIX in SharedConfig.xcconfig to your domain name in reverse DNS style.
  4. Hit "Build and Run".

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).

  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

  4. Hit "Build and Run".

Errors you might encounter on the way

Build errors in Xcode

Are you sure you opened the workspace? We use cocoapods and it creates a workspace with all the integrated libraries. Chances are you opened the project file.

If you have opened the workspace and still get errors you should check out the Notes section

Submitting A Patch

So you added some code and are ready to contribute your commits but you don't see a way to make a pull request? Soo cough we work with patches and Mailinglists like any good open source project!

You should take a look at this: https://wiki.videolan.org/Sending_Patches_VLC/ but finally send the patch to ios@videolan.org.

Also, if you haven't yet, you might want to subscribe to this mailinglist: https://mailman.videolan.org/listinfo/ios

Notes

For everything else, check: https://wiki.videolan.org/IOSCompile/ or look here: http://www.videolan.org/support/ For fast replies, IRC is probably the best way. We hang out in the #videolan channel on the freenode network. There is also a web interface: http://webchat.freenode.net/

We're happy to help!