-
Notifications
You must be signed in to change notification settings - Fork 10
/
Podfile
38 lines (32 loc) · 1.07 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
source 'https://cdn.cocoapods.org/'
platform :ios, '12.3'
inhibit_all_warnings!
use_frameworks!
abstract_target 'BasePods' do
# pods
pod 'AFNetworking', '2.7.0'
pod 'Mantle', '2.1.6'
pod 'MobileVLCKit', '3.3.0'
pod 'MWPhotoBrowser', :git => 'https://github.com/8ofproject/MWPhotoBrowser.git'
pod 'Texture', '2.8.1'
pod 'TUSafariActivity', '1.0.4'
pod 'YapDatabase', '3.1.4'
# targets
target 'dvach-browser'
target 'dvach-browserTests'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
# Fixes Xcode 12 bug for Texture internal dependency
if target.name == "PINCache" or target.name == "PINRemoteImage"
puts "Updating #{target.name} OTHER_CFLAGS"
target.build_configurations.each do |config|
config.build_settings['OTHER_CFLAGS'] = '-Xclang -fcompatibility-qualified-id-block-type-checking'
end
end
end
end
end