Podfile 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. source 'https://github.com/CocoaPods/Specs.git'
  2. install! 'cocoapods', :deterministic_uuids => false
  3. inhibit_all_warnings!
  4. target 'VLC-iOS' do
  5. platform :ios, '9.0'
  6. pod 'OBSlider', '1.1.0'
  7. pod 'InAppSettingsKit', :git => 'git://github.com/fkuehne/InAppSettingsKit.git', :commit => '415ea6bb' #tvOS fix
  8. pod 'upnpx', '~>1.4.0'
  9. pod 'HockeySDK', '~>4.1.6', :subspecs => ['CrashOnlyLib']
  10. pod 'XKKeychain', '~>1.0'
  11. pod 'box-ios-sdk-v2', :git => 'git://github.com/fkuehne/box-ios-sdk-v2.git' #has a logout function added
  12. pod 'CocoaHTTPServer', :git => 'git://github.com/fkuehne/CocoaHTTPServer.git' # has our fixes
  13. pod 'RESideMenu', '~>4.0.7'
  14. pod 'GoogleAPIClient/Drive'
  15. pod 'VLC-LXReorderableCollectionViewFlowLayout', '0.1.3v'
  16. pod 'VLC-WhiteRaccoon'
  17. pod 'VLC-LiveSDK', '5.7.0x'
  18. pod 'MediaLibraryKit-unstable'
  19. pod 'MobileVLCKit-unstable', '3.0.0a47'
  20. pod 'GTMAppAuth'
  21. pod 'ObjectiveDropboxOfficial', :git => 'git://github.com/carolanitz/dropbox-sdk-obj-c.git' #update ios platform version
  22. end
  23. target 'VLC-iOS-no-watch' do
  24. platform :ios, '9.0'
  25. pod 'OBSlider', '1.1.0'
  26. pod 'InAppSettingsKit', :git => 'git://github.com/fkuehne/InAppSettingsKit.git', :commit => '415ea6bb' #tvOS fix
  27. pod 'upnpx', '~>1.4.0'
  28. pod 'HockeySDK', '~>4.1.6', :subspecs => ['CrashOnlyLib']
  29. pod 'XKKeychain', '~>1.0'
  30. pod 'box-ios-sdk-v2', :git => 'git://github.com/fkuehne/box-ios-sdk-v2.git' #has a logout function added
  31. pod 'CocoaHTTPServer', :git => 'git://github.com/fkuehne/CocoaHTTPServer.git' # has our fixes
  32. pod 'RESideMenu', '~>4.0.7'
  33. pod 'GoogleAPIClient/Drive'
  34. pod 'VLC-LXReorderableCollectionViewFlowLayout', '0.1.3v'
  35. pod 'VLC-WhiteRaccoon'
  36. pod 'VLC-LiveSDK', '5.7.0x'
  37. pod 'MediaLibraryKit-unstable'
  38. pod 'MobileVLCKit-unstable', '3.0.0a47'
  39. pod 'ObjectiveDropboxOfficial', :git => 'git://github.com/carolanitz/dropbox-sdk-obj-c.git' #update ios platform version
  40. pod 'GTMAppAuth'
  41. end
  42. target 'VLC-tvOS' do
  43. platform :tvos, '10.2'
  44. pod 'XKKeychain', '~>1.0'
  45. pod 'box-ios-sdk-v2', :git => 'git://github.com/fkuehne/box-ios-sdk-v2.git' #has tvOS support added
  46. pod 'upnpx', '~>1.4.0'
  47. pod 'CocoaHTTPServer', :git => 'git://github.com/fkuehne/CocoaHTTPServer.git' # has our fixes
  48. pod 'MetaDataFetcherKit', '~>0.1.8'
  49. pod "OROpenSubtitleDownloader", :git => 'https://github.com/orta/OROpenSubtitleDownloader.git', :commit => '0509eac2'
  50. pod 'GRKArrayDiff', '~> 2.1'
  51. pod 'VLC-WhiteRaccoon'
  52. pod 'VLC-LiveSDK', '5.7.0x'
  53. pod 'ObjectiveDropboxOfficial', :git => 'git://github.com/carolanitz/dropbox-sdk-obj-c.git' #update ios platform version
  54. pod 'HockeySDK-tvOS', '~>5.0.0'
  55. pod 'TVVLCKit-unstable', '3.0.0a47'
  56. end
  57. target 'VLC-watchOS-Extension' do
  58. platform :watchos, '2.0'
  59. pod 'MediaLibraryKit-unstable'
  60. end
  61. post_install do |installer_representation|
  62. installer_representation.pods_project.targets.each do |target|
  63. if target.name == 'VLC-watchOS-Extension'
  64. installer_representation.pods_project.build_configurations.each do |config|
  65. config.build_settings['SKIP_INSTALL'] = 'YES'
  66. config.build_settings['CLANG_CXX_LIBRARY'] = 'libc++'
  67. config.build_settings['VALID_ARCHS'] = 'armv7 armv7s arm64 i386 armv7k'
  68. config.build_settings['ARCHS'] = 'armv7 armv7s arm64 i386 armv7k'
  69. end
  70. else
  71. installer_representation.pods_project.build_configurations.each do |config|
  72. config.build_settings['SKIP_INSTALL'] = 'YES'
  73. config.build_settings['VALID_ARCHS'] = 'armv7 armv7s arm64 i386 armv7k'
  74. config.build_settings['ARCHS'] = 'armv7 armv7s arm64 i386 armv7k'
  75. config.build_settings['CLANG_CXX_LIBRARY'] = 'libc++'
  76. end
  77. end
  78. end
  79. end