-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPodfile
48 lines (44 loc) · 1.59 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
platform :ios, '13.0'
use_frameworks!
inhibit_all_warnings!
install! 'cocoapods'
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.6'
config.build_settings['ENABLE_BITCODE'] = 'NO'
config.build_settings["SWIFT_OPTIMIZATION_LEVEL"] = "-Onone"
config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
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', '~> 5.12'
pod 'SDWebImageFLPlugin'
pod 'SDWebImageSVGCoder', '~> 1.5.0'
pod 'KYDrawerController'
pod 'SwiftyRSA'
pod 'RNCryptor', '~> 5.0'
pod 'SwiftLinkPreview', '~> 3.4.0'
pod 'JitsiMeetSDK', '~> 8.4.0'
pod 'PINCache'
pod 'KeychainAccess'
pod 'Giphy', '2.1.20'
pod 'Starscream', '~> 3.1'
pod 'lottie-ios'
pod 'Tor', podspec: 'https://raw.githubusercontent.com/iCepa/Tor.framework/v405.8.1/Tor.podspec'
pod "SwiftyXMLParser", :git => 'https://github.com/yahoojapan/SwiftyXMLParser.git'
pod "youtube-ios-player-helper", "~> 1.0.3"
pod 'MarqueeLabel'
pod 'ObjectMapper'
pod 'UIView-Shimmer', '~> 1.0'
pod 'CocoaMQTT', :git => 'https://github.com/emqx/CocoaMQTT.git'
pod 'MessagePack.swift', '~> 4.0'
end