Podfile 3.7 KB

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