Podfile 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. # debug
  13. pod 'SwiftLint', '~> 0.25.0', :configurations => ['Debug']
  14. end
  15. target 'VLC-iOS' do
  16. platform :ios, '9.0'
  17. shared_pods
  18. pod 'OBSlider', '1.1.0'
  19. pod 'InAppSettingsKit', :git => 'git://github.com/fkuehne/InAppSettingsKit.git', :commit => '415ea6bb' #tvOS fix
  20. pod 'HockeySDK', '~>5.1.2', :subspecs => ['CrashOnlyLib']
  21. pod 'PAPasscode', '~>1.0'
  22. pod 'GoogleAPIClient/Drive'
  23. pod 'MobileVLCKit', '3.1.3'
  24. pod 'MediaLibraryKit-prod'
  25. pod 'GTMAppAuth'
  26. target 'VLC-iOSUITests' do
  27. inherit! :search_paths
  28. pod 'SimulatorStatusMagic'
  29. end
  30. target 'VLC-iOSTests' do
  31. inherit! :search_paths
  32. end
  33. end
  34. target 'VLC-tvOS' do
  35. platform :tvos, '10.2'
  36. shared_pods
  37. pod 'MetaDataFetcherKit', '~>0.3.1'
  38. pod "OROpenSubtitleDownloader", :git => 'https://github.com/orta/OROpenSubtitleDownloader.git', :commit => '0509eac2'
  39. pod 'GRKArrayDiff', '~> 2.1'
  40. pod 'HockeySDK-tvOS', '~>5.0.0'
  41. pod 'TVVLCKit', '3.1.3'
  42. end
  43. post_install do |installer_representation|
  44. installer_representation.pods_project.targets.each do |target|
  45. installer_representation.pods_project.build_configurations.each do |config|
  46. config.build_settings['SKIP_INSTALL'] = 'YES'
  47. config.build_settings['VALID_ARCHS'] = 'armv7 armv7s arm64 i386 x86_64'
  48. config.build_settings['ARCHS'] = 'armv7 armv7s arm64 i386 x86_64'
  49. config.build_settings['CLANG_CXX_LIBRARY'] = 'libc++'
  50. end
  51. end
  52. end