Podfile 658 B

1234567891011121314151617181920212223
  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.2'
  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. end
  17. end