Podfile 1.5 KB

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