ClashX/Podfile
2019-10-02 21:44:02 +08:00

30 lines
703 B
Ruby

source 'https://cdn.cocoapods.org/'
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
inhibit_all_warnings!
use_frameworks!
pod 'LetsMove'
pod 'Alamofire', '~> 5.0.0-rc.2'
pod 'SwiftyJSON'
pod 'RxSwift'
pod 'RxCocoa'
pod 'CocoaLumberjack/Swift'
pod 'WebViewJavascriptBridge'
pod 'Starscream',:git=>'https://github.com/daltoniam/Starscream.git', :branch => 'master'
pod 'Fabric'
pod 'Crashlytics'
pod 'Sparkle'
end