Podfile 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. source 'https://github.com/CocoaPods/Specs.git'
  2. inhibit_all_warnings!
  3. target 'VLC-iOS' do
  4. platform :ios, '7.0'
  5. pod 'OBSlider', '1.1.0'
  6. pod 'InAppSettingsKit', :git => 'git://github.com/fkuehne/InAppSettingsKit.git', :commit => '415ea6bb' #tvOS fix
  7. pod 'upnpx', '~>1.3.6'
  8. pod 'HockeySDK', '~>3.6.4'
  9. pod 'XKKeychain', '~>1.0'
  10. pod 'box-ios-sdk-v2', :git => 'git://github.com/fkuehne/box-ios-sdk-v2.git' #has a logout function added
  11. pod 'CocoaHTTPServer', :git => 'git://github.com/fkuehne/CocoaHTTPServer.git' # has our fixes
  12. pod 'RESideMenu', '~>4.0.7'
  13. pod 'GoogleAPIClient/Drive'
  14. pod 'GTMOAuth2'
  15. end
  16. post_install do |installer_representation|
  17. installer_representation.pods_project.build_configurations.each do |config|
  18. config.build_settings['SKIP_INSTALL'] = 'YES'
  19. config.build_settings['VALID_ARCHS'] = 'armv7 armv7s arm64'
  20. config.build_settings['ARCHS'] = 'armv7 armv7s arm64'
  21. config.build_settings['CLANG_CXX_LIBRARY'] = 'libc++'
  22. end
  23. end
  24. target 'VLC-TV' do
  25. platform :tvos, '9.0'
  26. pod 'XKKeychain', '~>1.0'
  27. pod 'box-ios-sdk-v2', :git => 'git://github.com/fkuehne/box-ios-sdk-v2.git' #has tvOS support added
  28. pod 'upnpx', '~>1.3.6'
  29. pod 'CocoaHTTPServer', :git => 'git://github.com/fkuehne/CocoaHTTPServer.git' # has our fixes
  30. pod 'MetaDataFetcherKit', '~>0.1.8'
  31. pod "OROpenSubtitleDownloader", :git => 'https://github.com/orta/OROpenSubtitleDownloader.git', :commit => '0509eac2'
  32. pod 'GRKArrayDiff', '~> 2.1'
  33. end