Skip to content

Commit

Permalink
fix Xcode 14.3 build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rA9stuff committed Jun 15, 2023
1 parent 2cbc34f commit dde25e5
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Podfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
platform :osx, '10.13'

target 'LeetDown' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!

# Pods for LeetDown
pod 'AFNetworking', '~> 4.0'
end


post_install do |pi|
pi.pods_project.targets.each do |t|
t.build_configurations.each do |config|
config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '10.13'
end
end
end


0 comments on commit dde25e5

Please sign in to comment.