Podfile 757 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. target 'vlc-ios' do
  5. pod 'OBSlider', '1.1.0'
  6. pod 'PLCrashReporter', '1.2-rc5'
  7. pod 'GHSidebarNav', '1.0.0'
  8. pod 'InAppSettingsKit', '2.2.2'
  9. pod 'upnpx', '1.3.1'
  10. pod 'SSKeychain'
  11. pod 'QuincyKit', :git => 'https://github.com/carolanitz/QuincyKit.git' #for version 3.0
  12. pod 'box-ios-sdk-v2', :git => 'git://github.com/carolanitz/box-ios-sdk-v2.git', :commit => 'd2df30aa5f76d30910e06f3ef5aff49025de3cf1' #has a logout function added
  13. end
  14. post_install do |installer_representation|
  15. installer_representation.project.build_configurations.each do |config|
  16. config.build_settings['SKIP_INSTALL'] = 'YES'
  17. end
  18. end