-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathOktaAuthFoundation.podspec
More file actions
31 lines (29 loc) · 1.35 KB
/
OktaAuthFoundation.podspec
File metadata and controls
31 lines (29 loc) · 1.35 KB
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
31
Pod::Spec.new do |s|
s.name = "OktaAuthFoundation"
s.module_name = "AuthFoundation"
s.version = "2.1.4"
s.summary = "Okta Authentication Foundation"
s.description = <<-DESC
Provides the foundation and common features used to authenticate users, managing the lifecycle and storage of tokens and credentials, and provide a base for other Okta SDKs to build upon.
DESC
s.platforms = {
:ios => "13.0",
:tvos => "16.0",
:watchos => "7.0",
:osx => "10.15",
:visionos => "1.0"
}
s.ios.deployment_target = "13.0"
s.tvos.deployment_target = "16.0"
s.watchos.deployment_target = "7.0"
s.osx.deployment_target = "10.15"
s.visionos.deployment_target = "1.0"
s.homepage = "https://github.com/okta/okta-mobile-swift"
s.license = { :type => "APACHE2", :file => "LICENSE" }
s.authors = { "Okta Developers" => "developer@okta.com"}
s.source = { :git => "https://github.com/okta/okta-mobile-swift.git", :tag => s.version.to_s }
s.source_files = "Sources/{AuthFoundation,CommonSupport,JSON}/**/*.swift"
s.resource_bundles = { "AuthFoundation" => "Sources/AuthFoundation/Resources/**/*" }
s.swift_versions = ['5.10', '6.0']
s.prefix_header_file = false
end