Skip to content

Commit

Permalink
Update Cocoapod minimum target versions to match the Xcode project (#356
Browse files Browse the repository at this point in the history
)
  • Loading branch information
mikenachbaur-okta authored Mar 21, 2024
1 parent 910210f commit 0e83a81
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions OktaOidc.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Pod::Spec.new do |s|
s.description = <<-DESC
Integrate your native app with Okta using the AppAuth library.
DESC
s.platforms = { :ios => "11.0", :osx => "10.10"}
s.platforms = { :ios => "11.0", :osx => "10.14"}
s.homepage = 'https://github.com/okta/okta-oidc-ios'
s.license = { :type => 'APACHE2', :file => 'LICENSE' }
s.authors = { "Okta Developers" => "[email protected]"}
Expand All @@ -15,15 +15,15 @@ Integrate your native app with Okta using the AppAuth library.
s.subspec 'AppAuth' do |appauth|
appauth.source_files = 'Sources/AppAuth/**/*.{h,m}'
appauth.ios.deployment_target = '11.0'
appauth.osx.deployment_target = '10.10'
appauth.osx.deployment_target = '10.14'
end

s.subspec 'Okta' do |okta|
okta.dependency 'OktaOidc/AppAuth'
okta.source_files = 'Sources/OktaOidc/**/*.{h,swift}'
okta.exclude_files = 'Sources/OktaOidc/Common/Exports.swift'
okta.ios.deployment_target = '11.0'
okta.osx.deployment_target = '10.10'
okta.osx.deployment_target = '10.14'
end

s.xcconfig = { 'USER_HEADER_SEARCH_PATHS' => '${SRCROOT}/Sources/**' }
Expand Down

0 comments on commit 0e83a81

Please sign in to comment.