-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
Podfile
33 lines (28 loc) · 943 Bytes
/
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
platform :ios, '13.0'
use_frameworks!
# ignore all warnings from all dependencies
inhibit_all_warnings!
target 'deltachat-ios' do
pod 'SwiftLint'
pod 'SwiftFormat/CLI'
# pod 'openssl-ios-bitcode'
pod 'ReachabilitySwift'
pod 'SCSiriWaveformView'
pod 'SDWebImage', :modular_headers => true
pod 'SDWebImageWebPCoder', :modular_headers => true
pod 'SDWebImageSVGKitPlugin'
pod 'SVGKit', :modular_headers => true
pod 'MCEmojiPicker', :git => 'https://github.com/deltachat/MCEmojiPicker', :branch => 'main'
end
target 'DcShare' do
pod 'SDWebImage', :modular_headers => true
pod 'SDWebImageWebPCoder', :modular_headers => true
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = "13.0"
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
end
end
end