Podfile 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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', '2.2.2'
  7. pod 'upnpx', '~>1.3.6'
  8. pod 'HockeySDK', '~>3.6.4'
  9. pod 'SSKeychain', :git => 'git://github.com/fkuehne/sskeychain.git' #iCloud Keychain sync
  10. pod 'box-ios-sdk-v2', :git => 'git://github.com/fkuehne/box-ios-sdk-v2.git' #has a logout function added
  11. pod 'RESideMenu', '~>4.0.7'
  12. end
  13. post_install do |installer_representation|
  14. installer_representation.pods_project.build_configurations.each do |config|
  15. config.build_settings['SKIP_INSTALL'] = 'YES'
  16. config.build_settings['VALID_ARCHS'] = 'armv7 armv7s arm64'
  17. config.build_settings['ARCHS'] = 'armv7 armv7s arm64'
  18. config.build_settings['CLANG_CXX_LIBRARY'] = 'libc++'
  19. end
  20. end
  21. target 'VLC-TV' do
  22. platform :tvos, '9.0'
  23. pod 'SSKeychain', :git => 'git://github.com/fkuehne/sskeychain.git' #iCloud Keychain Sync
  24. pod 'box-ios-sdk-v2', :git => 'git://github.com/fkuehne/box-ios-sdk-v2.git' #has tvOS support added
  25. pod 'upnpx', '~>1.3.6'
  26. end