Skip to content

Commit 0e83a81

Browse files
Update Cocoapod minimum target versions to match the Xcode project (#356)
1 parent 910210f commit 0e83a81

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

OktaOidc.podspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Pod::Spec.new do |s|
55
s.description = <<-DESC
66
Integrate your native app with Okta using the AppAuth library.
77
DESC
8-
s.platforms = { :ios => "11.0", :osx => "10.10"}
8+
s.platforms = { :ios => "11.0", :osx => "10.14"}
99
s.homepage = 'https://github.com/okta/okta-oidc-ios'
1010
s.license = { :type => 'APACHE2', :file => 'LICENSE' }
1111
s.authors = { "Okta Developers" => "developer@okta.com"}
@@ -15,15 +15,15 @@ Integrate your native app with Okta using the AppAuth library.
1515
s.subspec 'AppAuth' do |appauth|
1616
appauth.source_files = 'Sources/AppAuth/**/*.{h,m}'
1717
appauth.ios.deployment_target = '11.0'
18-
appauth.osx.deployment_target = '10.10'
18+
appauth.osx.deployment_target = '10.14'
1919
end
2020

2121
s.subspec 'Okta' do |okta|
2222
okta.dependency 'OktaOidc/AppAuth'
2323
okta.source_files = 'Sources/OktaOidc/**/*.{h,swift}'
2424
okta.exclude_files = 'Sources/OktaOidc/Common/Exports.swift'
2525
okta.ios.deployment_target = '11.0'
26-
okta.osx.deployment_target = '10.10'
26+
okta.osx.deployment_target = '10.14'
2727
end
2828

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

0 commit comments

Comments
 (0)