-
Notifications
You must be signed in to change notification settings - Fork 287
/
Podfile
67 lines (59 loc) · 2.32 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
65
66
67
source 'https://cdn.cocoapods.org'
install! 'cocoapods', :deterministic_uuids => false
inhibit_all_warnings!
def shared_pods
use_modular_headers!
pod 'XKKeychain', '~>1.0'
pod 'box-ios-sdk-v2', :git => 'https://github.com/fkuehne/box-ios-sdk-v2.git', :commit => '08161e74' #has a our fixes
pod 'CocoaHTTPServer', :git => 'https://github.com/fkuehne/CocoaHTTPServer.git' # has our fixes
pod 'AFNetworking', '~>4.0'
pod 'VLCKit', '4.0.0a6'
pod 'VLCMediaLibraryKit', '0.13.0a6'
# debug
pod 'SwiftLint', '~> 0.47.1', :configurations => ['Debug']
end
target 'VLC-iOS' do
platform :ios, '12.0'
shared_pods
pod 'OBSlider', '1.1.0'
pod 'InAppSettingsKit', :git => 'https://github.com/Mikanbu/InAppSettingsKit.git', :commit => 'a429840' #tvOS fix
pod 'GoogleAPIClientForREST/Drive', '~> 1.2.1'
pod 'GoogleSignIn', '6.2.0'
pod 'GTMAppAuth', '~> 1.0'
pod 'ADAL', :git => 'https://code.videolan.org/fkuehne/azure-activedirectory-library-for-objc.git', :commit => '348e94df'
pod 'OneDriveSDK', :git => 'https://code.videolan.org/fkuehne/onedrive-sdk-ios.git', :commit => '810f82da'
pod 'MarqueeLabel', '4.0.2'
pod 'ObjectiveDropboxOfficial'
target 'VLC-iOSTests' do
inherit! :search_paths
end
use_modular_headers!
end
target 'VLC-iOS-Screenshots' do
platform :ios, '12.0'
inherit! :search_paths
pod 'SimulatorStatusMagic'
end
target 'VLC-tvOS' do
platform :tvos, '12.0'
shared_pods
pod 'GRKArrayDiff', :git => 'https://code.videolan.org/fkuehne/GRKArrayDiff.git'
pod 'MetaDataFetcherKit', '~>0.5.0'
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['ARCHS'] = 'arm64 x86_64'
config.build_settings['CLANG_CXX_LIBRARY'] = 'libc++'
end
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
config.build_settings['TVOS_DEPLOYMENT_TARGET'] = '12.0'
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