-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPingOidc.podspec
37 lines (31 loc) · 1.11 KB
/
PingOidc.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
31
32
33
34
35
36
37
#
# Be sure to run `pod lib lint PingOidc.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'PingOidc'
s.version = '1.0.0'
s.summary = 'PingOidc SDK for iOS'
s.description = <<-DESC
The PingOidc SDK provides OIDC client for PingOne and ForgeRock platform.
DESC
s.homepage = 'https://www.pingidentity.com/'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = 'Ping Identity'
s.source = {
:git => 'https://github.com/ForgeRock/ping-ios-sdk.git',
:tag => s.version.to_s
}
s.module_name = 'PingOidc'
s.swift_versions = ['5.0', '5.1']
s.ios.deployment_target = '13.0'
base_dir = "Oidc/Oidc"
s.source_files = base_dir + '/**/*.swift', base_dir + '/**/*.h'
s.resource_bundles = {
'Oidc' => [base_dir + '/*.xcprivacy']
}
s.ios.dependency 'PingOrchestrate', '~> 1.0.0'
end