Podfile 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. source 'https://github.com/CocoaPods/Specs.git'
  2. install! 'cocoapods', :deterministic_uuids => false
  3. inhibit_all_warnings!
  4. def shared_pods
  5. pod 'XKKeychain', '~>1.0'
  6. pod 'box-ios-sdk-v2', :git => 'git://github.com/fkuehne/box-ios-sdk-v2.git' #has a logout function added
  7. pod 'upnpx', '~>1.4.0'
  8. pod 'CocoaHTTPServer', :git => 'git://github.com/fkuehne/CocoaHTTPServer.git' # has our fixes
  9. pod 'VLC-WhiteRaccoon'
  10. pod 'VLC-LiveSDK', '5.7.0x'
  11. pod 'ObjectiveDropboxOfficial', :git => 'git://github.com/carolanitz/dropbox-sdk-obj-c.git' #update ios platform version
  12. pod 'SwiftLint', '~> 0.25.0'
  13. end
  14. target 'VLC-iOS' do
  15. platform :ios, '9.0'
  16. shared_pods
  17. pod 'OBSlider', '1.1.0'
  18. pod 'InAppSettingsKit', :git => 'git://github.com/fkuehne/InAppSettingsKit.git', :commit => '415ea6bb' #tvOS fix
  19. pod 'HockeySDK', '~>5.1.2', :subspecs => ['CrashOnlyLib']
  20. pod 'PAPasscode', '~>1.0'
  21. pod 'GoogleAPIClient/Drive'
  22. pod 'VLC-LXReorderableCollectionViewFlowLayout', '0.1.3v'
  23. pod 'MediaLibraryKit-prod'
  24. pod 'MobileVLCKit', '3.0.2'
  25. pod 'GTMAppAuth'
  26. target 'VLC for iOSUITests' do
  27. pod 'SimulatorStatusMagic'
  28. end
  29. end
  30. target 'VLC-tvOS' do
  31. platform :tvos, '10.2'
  32. shared_pods
  33. pod 'MetaDataFetcherKit', '~>0.3.1'
  34. pod "OROpenSubtitleDownloader", :git => 'https://github.com/orta/OROpenSubtitleDownloader.git', :commit => '0509eac2'
  35. pod 'GRKArrayDiff', '~> 2.1'
  36. pod 'HockeySDK-tvOS', '~>5.0.0'
  37. pod 'TVVLCKit', '3.0.2'
  38. end
  39. post_install do |installer_representation|
  40. installer_representation.pods_project.targets.each do |target|
  41. installer_representation.pods_project.build_configurations.each do |config|
  42. config.build_settings['SKIP_INSTALL'] = 'YES'
  43. config.build_settings['VALID_ARCHS'] = 'armv7 armv7s arm64 i386 armv7k'
  44. config.build_settings['ARCHS'] = 'armv7 armv7s arm64 i386 armv7k'
  45. config.build_settings['CLANG_CXX_LIBRARY'] = 'libc++'
  46. end
  47. end
  48. end