Podfile 796 B

12345678910111213141516171819202122232425
  1. # Uncomment this line to define a global platform for your project
  2. # platform :ios, '6.0'
  3. source 'https://github.com/CocoaPods/Specs.git'
  4. inhibit_all_warnings!
  5. target 'vlc-ios' do
  6. pod 'OBSlider', '1.1.0'
  7. pod 'GHSidebarNav', '1.0.0'
  8. pod 'InAppSettingsKit', '2.2.2'
  9. pod 'upnpx', '1.3.3'
  10. pod 'SSKeychain'
  11. pod 'box-ios-sdk-v2', :git => 'git://github.com/carolanitz/box-ios-sdk-v2.git', :commit => 'd2df30aa5f76d30910e06f3ef5aff49025de3cf1' #has a logout function added
  12. end
  13. post_install do |installer_representation|
  14. installer_representation.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. end
  19. end