ClashX/Podfile

30 lines
662 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'
2020-03-04 17:45:36 +08:00
pod 'Alamofire', '~> 5.0'
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'
2020-02-14 21:05:17 +08:00
pod 'Starscream','3.1.1'
2020-03-13 18:17:34 +08:00
pod 'AppCenter/Analytics'
2018-12-09 00:06:43 +08:00
pod 'Crashlytics'
2019-10-01 15:54:43 +08:00
pod 'Sparkle'
pod "FlexibleDiff"
end