-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPodfile
More file actions
30 lines (28 loc) · 931 Bytes
/
Podfile
File metadata and controls
30 lines (28 loc) · 931 Bytes
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
platform :osx, '12.0'
use_frameworks!
inhibit_all_warnings!
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '12.0'
xcconfig_path = config.base_configuration_reference.real_path
xcconfig = File.read(xcconfig_path)
xcconfig_mod = xcconfig.gsub(/DT_TOOLCHAIN_DIR/, "TOOLCHAIN_DIR")
File.open(xcconfig_path, "w") { |file| file << xcconfig_mod }
end
end
end
target 'Sphinx' do
pod 'Alamofire', '~> 5.6.4'
pod 'ReachabilitySwift'
pod 'SwiftyJSON'
pod 'SDWebImage'
pod 'SDWebImageSwiftUI'
pod 'RNCryptor', '~> 5.0'
pod 'KeychainAccess'
pod 'Starscream', '~> 3.1'
pod 'Tor', podspec: 'https://raw.githubusercontent.com/iCepa/Tor.framework/v405.8.1/Tor.podspec'
pod 'ObjectMapper'
pod 'CocoaMQTT'
pod 'MessagePack.swift', '~> 4.0'
end