ClashX/Podfile

30 lines
630 B
Plaintext
Raw Normal View History

2019-07-28 13:25:22 +08:00
source 'https://cdn.cocoapods.org/'
2019-09-27 20:57:40 +08:00
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if config.build_settings['MACOSX_DEPLOYMENT_TARGET'] == ''
config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '10.10'
end
end
end
end
target 'ClashX' do
2019-05-10 20:40:35 +08:00
inhibit_all_warnings!
use_frameworks!
2019-06-29 17:48:18 +08:00
pod 'LetsMove'
2019-12-31 21:47:38 +08:00
pod 'Alamofire', '~> 5.0.0-rc.3'
2019-06-29 17:48:18 +08:00
pod 'SwiftyJSON'
pod 'RxSwift'
pod 'RxCocoa'
pod 'CocoaLumberjack/Swift'
2019-06-29 17:48:18 +08:00
pod 'WebViewJavascriptBridge'
2019-12-31 21:47:38 +08:00
pod 'Starscream'
2018-12-09 00:06:43 +08:00
pod 'Fabric'
pod 'Crashlytics'
2019-10-01 15:54:43 +08:00
pod 'Sparkle'
2018-12-09 00:06:43 +08:00
end