-
Notifications
You must be signed in to change notification settings - Fork 19
/
OktaOAuth2.podspec
30 lines (28 loc) · 1.2 KB
/
OktaOAuth2.podspec
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
Pod::Spec.new do |s|
s.name = "OktaOAuth2"
s.version = "1.8.2"
s.summary = "Okta OAuth2 Authentication"
s.description = <<-DESC
Enables application developers to authenticate users utilizing a variety of OAuth2 authentication flows.
DESC
s.platforms = {
:ios => "12.0",
:tvos => "12.0",
:visionos => "1.0",
:watchos => "7.0",
:osx => "10.13"
}
s.ios.deployment_target = "12.0"
s.tvos.deployment_target = "12.0"
s.visionos.deployment_target = "1.0"
s.watchos.deployment_target = "7.0"
s.osx.deployment_target = "10.13"
s.homepage = "https://github.com/okta/okta-mobile-swift"
s.license = { :type => "APACHE2", :file => "LICENSE" }
s.authors = { "Okta Developers" => "[email protected]"}
s.source = { :git => "https://github.com/okta/okta-mobile-swift.git", :tag => s.version.to_s }
s.source_files = "Sources/OktaOAuth2/**/*.swift"
s.resource_bundles = { "OktaOAuth2" => "Sources/OktaOAuth2/Resources/**/*" }
s.swift_version = "5.9"
s.dependency "OktaAuthFoundation", "#{s.version.to_s}"
end