forked from alvincrisuy/clashX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
36 lines (33 loc) · 996 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
33
34
35
source 'https://cdn.cocoapods.org/'
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if ['FlexibleDiff'].include? target.name
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '5'
end
end
if config.build_settings['MACOSX_DEPLOYMENT_TARGET'] == '' || Gem::Version.new(config.build_settings['MACOSX_DEPLOYMENT_TARGET']) < Gem::Version.new("10.14")
config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '10.14'
end
end
end
end
target 'ClashX' do
inhibit_all_warnings!
use_modular_headers!
pod 'LetsMove'
pod 'Alamofire', '~> 5.0'
pod 'SwiftyJSON'
pod 'RxSwift'
pod 'RxCocoa'
pod 'CocoaLumberjack/Swift'
pod 'Starscream','3.1.1'
pod 'AppCenter/Analytics'
pod 'AppCenter/Crashes'
pod 'Sparkle','~>2.0'
pod "FlexibleDiff"
pod 'GzipSwift'
pod 'SwiftLint'
pod 'SwiftFormat/CLI', '~> 0.49'
end