Podfile 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. def iOS_pods
  15. pod 'OBSlider', '1.1.0'
  16. pod 'InAppSettingsKit', :git => 'git://github.com/fkuehne/InAppSettingsKit.git', :commit => '415ea6bb' #tvOS fix
  17. pod 'HockeySDK', '~>5.1.2', :subspecs => ['CrashOnlyLib']
  18. pod 'PAPasscode', '~>1.0'
  19. pod 'GoogleAPIClient/Drive'
  20. pod 'VLC-LXReorderableCollectionViewFlowLayout', '0.1.3v'
  21. pod 'MediaLibraryKit-prod'
  22. pod 'MobileVLCKit', '3.0.2'
  23. pod 'GTMAppAuth'
  24. end
  25. target 'VLC-iOS' do
  26. platform :ios, '9.0'
  27. shared_pods
  28. iOS_pods
  29. end
  30. target 'VLC-iOS-no-watch' do
  31. platform :ios, '9.0'
  32. shared_pods
  33. iOS_pods
  34. end
  35. target 'VLC-tvOS' do
  36. platform :tvos, '10.2'
  37. shared_pods
  38. pod 'MetaDataFetcherKit', '~>0.3.1'
  39. pod "OROpenSubtitleDownloader", :git => 'https://github.com/orta/OROpenSubtitleDownloader.git', :commit => '0509eac2'
  40. pod 'GRKArrayDiff', '~> 2.1'
  41. pod 'HockeySDK-tvOS', '~>5.0.0'
  42. pod 'TVVLCKit', '3.0.2'
  43. end
  44. target 'VLC-watchOS-Extension' do
  45. platform :watchos, '2.0'
  46. pod 'MediaLibraryKit-unstable'
  47. end
  48. post_install do |installer_representation|
  49. installer_representation.pods_project.targets.each do |target|
  50. if target.name == 'VLC-watchOS-Extension'
  51. installer_representation.pods_project.build_configurations.each do |config|
  52. config.build_settings['SKIP_INSTALL'] = 'YES'
  53. config.build_settings['CLANG_CXX_LIBRARY'] = 'libc++'
  54. config.build_settings['VALID_ARCHS'] = 'armv7 armv7s arm64 i386 armv7k'
  55. config.build_settings['ARCHS'] = 'armv7 armv7s arm64 i386 armv7k'
  56. end
  57. else
  58. installer_representation.pods_project.build_configurations.each do |config|
  59. config.build_settings['SKIP_INSTALL'] = 'YES'
  60. config.build_settings['VALID_ARCHS'] = 'armv7 armv7s arm64 i386 armv7k'
  61. config.build_settings['ARCHS'] = 'armv7 armv7s arm64 i386 armv7k'
  62. config.build_settings['CLANG_CXX_LIBRARY'] = 'libc++'
  63. end
  64. end
  65. end
  66. end