Podfile 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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 'RESideMenu', '~>4.0.7'
  19. pod 'PAPasscode', '~>1.0'
  20. pod 'GoogleAPIClient/Drive'
  21. pod 'VLC-LXReorderableCollectionViewFlowLayout', '0.1.3v'
  22. pod 'MediaLibraryKit-prod'
  23. pod 'MobileVLCKit', '3.0.2'
  24. pod 'GTMAppAuth'
  25. end
  26. target 'VLC-iOS' do
  27. platform :ios, '9.0'
  28. shared_pods
  29. iOS_pods
  30. end
  31. target 'VLC-iOS-no-watch' do
  32. platform :ios, '9.0'
  33. shared_pods
  34. iOS_pods
  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.0.0'
  43. pod 'TVVLCKit', '3.0.2'
  44. end
  45. target 'VLC-watchOS-Extension' do
  46. platform :watchos, '2.0'
  47. pod 'MediaLibraryKit-unstable'
  48. end
  49. post_install do |installer_representation|
  50. installer_representation.pods_project.targets.each do |target|
  51. if target.name == 'VLC-watchOS-Extension'
  52. installer_representation.pods_project.build_configurations.each do |config|
  53. config.build_settings['SKIP_INSTALL'] = 'YES'
  54. config.build_settings['CLANG_CXX_LIBRARY'] = 'libc++'
  55. config.build_settings['VALID_ARCHS'] = 'armv7 armv7s arm64 i386 armv7k'
  56. config.build_settings['ARCHS'] = 'armv7 armv7s arm64 i386 armv7k'
  57. end
  58. else
  59. installer_representation.pods_project.build_configurations.each do |config|
  60. config.build_settings['SKIP_INSTALL'] = 'YES'
  61. config.build_settings['VALID_ARCHS'] = 'armv7 armv7s arm64 i386 armv7k'
  62. config.build_settings['ARCHS'] = 'armv7 armv7s arm64 i386 armv7k'
  63. config.build_settings['CLANG_CXX_LIBRARY'] = 'libc++'
  64. end
  65. end
  66. end
  67. end