forked from videolan/vlc-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
64 lines (58 loc) · 2.21 KB
/
Podfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
source 'https://github.com/CocoaPods/Specs.git'
install! 'cocoapods', :deterministic_uuids => false
inhibit_all_warnings!
def shared_pods
pod 'XKKeychain', '~>1.0'
pod 'box-ios-sdk-v2', :git => 'git://github.com/fkuehne/box-ios-sdk-v2.git' #has a logout function added
pod 'upnpx', '~>1.4.0'
pod 'CocoaHTTPServer', :git => 'git://github.com/fkuehne/CocoaHTTPServer.git' # has our fixes
pod 'VLC-WhiteRaccoon'
pod 'ObjectiveDropboxOfficial', :git => 'git://github.com/Mikanbu/dropbox-sdk-obj-c.git' #update ios platform version
pod 'AppCenter', '2.3.0'
# debug
pod 'SwiftLint', '~> 0.25.0', :configurations => ['Debug']
end
target 'VLC-iOS' do
platform :ios, '9.0'
shared_pods
pod 'OBSlider', '1.1.0'
pod 'InAppSettingsKit', :git => 'git://github.com/fkuehne/InAppSettingsKit.git', :commit => '415ea6bb' #tvOS fix
pod 'PAPasscode', '~>1.0'
pod 'GoogleAPIClientForREST/Drive'
pod 'MobileVLCKit', '3.3.6'
pod 'VLCMediaLibraryKit', '0.6.1'
pod 'MediaLibraryKit-prod'
pod 'GTMAppAuth', '0.7.1'
pod 'OneDriveSDK'
target 'VLC-iOS-Screenshots' do
inherit! :search_paths
pod 'SimulatorStatusMagic'
end
target 'VLC-iOSTests' do
inherit! :search_paths
end
end
target 'VLC-tvOS' do
platform :tvos, '11.0'
shared_pods
pod 'MetaDataFetcherKit', '~>0.3.1'
pod "OROpenSubtitleDownloader", :git => 'https://github.com/orta/OROpenSubtitleDownloader.git', :commit => '0509eac2'
pod 'GRKArrayDiff', '~> 2.1'
pod 'TVVLCKit', '3.3.6'
end
post_install do |installer_representation|
installer_representation.pods_project.targets.each do |target|
installer_representation.pods_project.build_configurations.each do |config|
config.build_settings['SKIP_INSTALL'] = 'YES'
config.build_settings['VALID_ARCHS'] = 'armv7 armv7s arm64 i386 x86_64'
config.build_settings['ARCHS'] = 'armv7 armv7s arm64 i386 x86_64'
config.build_settings['CLANG_CXX_LIBRARY'] = 'libc++'
end
target.build_configurations.each do |config|
xcconfig_path = config.base_configuration_reference.real_path
xcconfig = File.read(xcconfig_path)
new_xcconfig = xcconfig.sub('-l"sqlite3"', '')
File.open(xcconfig_path, "w") { |file| file << new_xcconfig }
end
end
end