Podfile 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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.4', :subspecs => ['CrashOnlyLib']
  21. pod 'PAPasscode', '~>1.0'
  22. pod 'GoogleAPIClientForREST/Drive'
  23. pod 'MobileVLCKit', '3.2.1'
  24. pod 'VLCMediaLibraryKit'
  25. pod 'MediaLibraryKit-prod'
  26. pod 'GTMAppAuth'
  27. pod 'OneDriveSDK'
  28. target 'VLC-iOSUITests' do
  29. inherit! :search_paths
  30. pod 'SimulatorStatusMagic'
  31. end
  32. target 'VLC-iOSTests' do
  33. inherit! :search_paths
  34. end
  35. end
  36. target 'VLC-tvOS' do
  37. platform :tvos, '10.2'
  38. shared_pods
  39. pod 'MetaDataFetcherKit', '~>0.3.1'
  40. pod "OROpenSubtitleDownloader", :git => 'https://github.com/orta/OROpenSubtitleDownloader.git', :commit => '0509eac2'
  41. pod 'GRKArrayDiff', '~> 2.1'
  42. pod 'HockeySDK-tvOS', '~>5.1.0'
  43. pod 'TVVLCKit', '3.2.1'
  44. end
  45. post_install do |installer_representation|
  46. installer_representation.pods_project.targets.each do |target|
  47. installer_representation.pods_project.build_configurations.each do |config|
  48. config.build_settings['SKIP_INSTALL'] = 'YES'
  49. config.build_settings['VALID_ARCHS'] = 'armv7 armv7s arm64 i386 x86_64'
  50. config.build_settings['ARCHS'] = 'armv7 armv7s arm64 i386 x86_64'
  51. config.build_settings['CLANG_CXX_LIBRARY'] = 'libc++'
  52. end
  53. end
  54. end