-
Notifications
You must be signed in to change notification settings - Fork 11
/
Podfile
32 lines (29 loc) · 910 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
platform :ios, '11.0'
use_frameworks!
inhibit_all_warnings!
install! 'cocoapods'
target 'sphinx' do
pod 'Alamofire', '~> 5.0.0-rc.3'
pod 'ReachabilitySwift'
pod 'SwiftyJSON'
pod 'SDWebImage', '~> 5.11'
pod 'SDWebImageFLPlugin'
pod 'KYDrawerController'
pod 'SwiftyRSA'
pod 'RNCryptor', '~> 5.0'
pod 'SwiftLinkPreview', '~> 3.1.0'
pod 'JitsiMeetSDK', '~> 3.6.0'
pod 'KeychainAccess'
pod 'Giphy', '2.1.1'
pod 'Starscream', '~> 3.1'
pod 'lottie-ios'
pod 'Tor', podspec: 'https://raw.githubusercontent.com/iCepa/Tor.framework/v405.8.1/Tor.podspec'
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["SWIFT_OPTIMIZATION_LEVEL"] = "-Onone"
end
end
end
end