Podfile 866 B

123456789101112131415161718192021222324252627
  1. platform :ios, '7.0'
  2. source 'https://github.com/CocoaPods/Specs.git'
  3. inhibit_all_warnings!
  4. target 'vlc-ios' do
  5. pod 'OBSlider', '1.1.0'
  6. pod 'GHSidebarNav', '1.0.0'
  7. pod 'InAppSettingsKit', '2.2.2'
  8. pod 'upnpx', '~>1.3.4'
  9. pod 'HockeySDK', '~>3.6.4'
  10. pod 'SSKeychain', '~>1.2.2'
  11. pod 'box-ios-sdk-v2', :git => 'git://github.com/carolanitz/box-ios-sdk-v2.git', :commit => 'd2df30aa5f76d30910e06f3ef5aff49025de3cf1' #has a logout function added
  12. pod 'RESideMenu', '~>4.0.7'
  13. end
  14. post_install do |installer_representation|
  15. installer_representation.pods_project.build_configurations.each do |config|
  16. config.build_settings['SKIP_INSTALL'] = 'YES'
  17. config.build_settings['VALID_ARCHS'] = 'armv7 armv7s arm64'
  18. config.build_settings['ARCHS'] = 'armv7 armv7s arm64'
  19. config.build_settings['CLANG_CXX_LIBRARY'] = 'libc++'
  20. end
  21. end