mirror of
https://github.com/bolucat/Archive.git
synced 2025-12-24 13:28:37 +08:00
31 lines
838 B
Ruby
31 lines
838 B
Ruby
# Uncomment the next line to define a global platform for your project
|
|
# platform :ios, '9.0'
|
|
source 'https://github.com/CocoaPods/Specs.git'
|
|
platform :osx, '11.0'
|
|
|
|
target 'V2rayU' do
|
|
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
|
|
use_frameworks!
|
|
|
|
# Pods for V2rayU
|
|
pod 'FirebaseAnalytics', '~> 10.24.0'
|
|
pod 'FirebaseCrashlytics'
|
|
pod 'SwiftyJSON'/
|
|
# master branch
|
|
pod 'Preferences', :git => 'https://github.com/sindresorhus/Preferences.git'
|
|
pod 'QRCoder'
|
|
pod 'MASShortcut'
|
|
pod 'Swifter'
|
|
pod 'Yams'
|
|
|
|
end
|
|
|
|
# fix libarclite_macosx.a need min deploy target 11.0
|
|
post_install do |installer|
|
|
installer.pods_project.targets.each do |target|
|
|
target.build_configurations.each do |config|
|
|
config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '11.0'
|
|
end
|
|
end
|
|
end
|