1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- source 'https://github.com/CocoaPods/Specs.git'
- install! 'cocoapods', :deterministic_uuids => false
- inhibit_all_warnings!
- target 'VLC-iOS' do
- platform :ios, '9.0'
- pod 'OBSlider', '1.1.0'
- pod 'InAppSettingsKit', :git => 'git://github.com/fkuehne/InAppSettingsKit.git', :commit => '415ea6bb' #tvOS fix
- pod 'upnpx', '~>1.4.0'
- pod 'HockeySDK', '~>4.1.6', :subspecs => ['CrashOnlyLib']
- pod 'XKKeychain', '~>1.0'
- pod 'box-ios-sdk-v2', :git => 'git://github.com/fkuehne/box-ios-sdk-v2.git' #has a logout function added
- pod 'CocoaHTTPServer', :git => 'git://github.com/fkuehne/CocoaHTTPServer.git' # has our fixes
- pod 'RESideMenu', '~>4.0.7'
- pod 'PAPasscode', '~>1.0'
- pod 'GoogleAPIClient/Drive'
- pod 'VLC-LXReorderableCollectionViewFlowLayout', '0.1.3v'
- pod 'VLC-WhiteRaccoon'
- pod 'VLC-LiveSDK', '5.7.0x'
- pod 'MediaLibraryKit-unstable'
- pod 'MobileVLCKit-unstable', '3.0.0a49'
- pod 'GTMAppAuth'
- pod 'ObjectiveDropboxOfficial', :git => 'git://github.com/carolanitz/dropbox-sdk-obj-c.git' #update ios platform version
- end
- target 'VLC-iOS-no-watch' do
- platform :ios, '9.0'
- pod 'OBSlider', '1.1.0'
- pod 'InAppSettingsKit', :git => 'git://github.com/fkuehne/InAppSettingsKit.git', :commit => '415ea6bb' #tvOS fix
- pod 'upnpx', '~>1.4.0'
- pod 'HockeySDK', '~>4.1.6', :subspecs => ['CrashOnlyLib']
- pod 'XKKeychain', '~>1.0'
- pod 'box-ios-sdk-v2', :git => 'git://github.com/fkuehne/box-ios-sdk-v2.git' #has a logout function added
- pod 'CocoaHTTPServer', :git => 'git://github.com/fkuehne/CocoaHTTPServer.git' # has our fixes
- pod 'RESideMenu', '~>4.0.7'
- pod 'PAPasscode', '~>1.0'
- pod 'GoogleAPIClient/Drive'
- pod 'VLC-LXReorderableCollectionViewFlowLayout', '0.1.3v'
- pod 'VLC-WhiteRaccoon'
- pod 'VLC-LiveSDK', '5.7.0x'
- pod 'MediaLibraryKit-unstable'
- pod 'MobileVLCKit-unstable', '3.0.0a49'
- pod 'ObjectiveDropboxOfficial', :git => 'git://github.com/carolanitz/dropbox-sdk-obj-c.git' #update ios platform version
- pod 'GTMAppAuth'
- end
- target 'VLC-tvOS' do
- platform :tvos, '10.2'
- pod 'XKKeychain', '~>1.0'
- pod 'box-ios-sdk-v2', :git => 'git://github.com/fkuehne/box-ios-sdk-v2.git' #has tvOS support added
- pod 'upnpx', '~>1.4.0'
- pod 'CocoaHTTPServer', :git => 'git://github.com/fkuehne/CocoaHTTPServer.git' # has our fixes
- pod 'MetaDataFetcherKit', '~>0.1.8'
- pod "OROpenSubtitleDownloader", :git => 'https://github.com/orta/OROpenSubtitleDownloader.git', :commit => '0509eac2'
- pod 'GRKArrayDiff', '~> 2.1'
- pod 'VLC-WhiteRaccoon'
- pod 'VLC-LiveSDK', '5.7.0x'
- pod 'ObjectiveDropboxOfficial', :git => 'git://github.com/carolanitz/dropbox-sdk-obj-c.git' #update ios platform version
- pod 'HockeySDK-tvOS', '~>5.0.0'
- pod 'TVVLCKit-unstable', '3.0.0a49'
- end
- target 'VLC-watchOS-Extension' do
- platform :watchos, '2.0'
- pod 'MediaLibraryKit-unstable'
- end
- post_install do |installer_representation|
- installer_representation.pods_project.targets.each do |target|
- if target.name == 'VLC-watchOS-Extension'
- installer_representation.pods_project.build_configurations.each do |config|
- config.build_settings['SKIP_INSTALL'] = 'YES'
- config.build_settings['CLANG_CXX_LIBRARY'] = 'libc++'
- config.build_settings['VALID_ARCHS'] = 'armv7 armv7s arm64 i386 armv7k'
- config.build_settings['ARCHS'] = 'armv7 armv7s arm64 i386 armv7k'
- end
- else
- installer_representation.pods_project.build_configurations.each do |config|
- config.build_settings['SKIP_INSTALL'] = 'YES'
- config.build_settings['VALID_ARCHS'] = 'armv7 armv7s arm64 i386 armv7k'
- config.build_settings['ARCHS'] = 'armv7 armv7s arm64 i386 armv7k'
- config.build_settings['CLANG_CXX_LIBRARY'] = 'libc++'
- end
- end
- end
- end
|