-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathPingJourney.podspec
More file actions
31 lines (26 loc) · 1.01 KB
/
PingJourney.podspec
File metadata and controls
31 lines (26 loc) · 1.01 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 = 'PingJourney'
s.version = '2.0.0'
s.summary = 'PingJourney SDK for iOS'
s.description = <<-DESC
The PingJourney SDK is a powerful and flexible library for Authentication and Authorization.
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 = 'PingJourney'
s.swift_versions = ['5.0', '5.1', '6.0']
s.ios.deployment_target = '16.0'
base_dir = "Journey/Journey"
s.source_files = base_dir + '/**/*.swift', base_dir + '/**/*.c', base_dir + '/**/*.h'
s.resource_bundles = {
'Journey' => [base_dir + '/*.xcprivacy']
}
s.ios.dependency 'PingDeviceProfile', '~> 2.0.0'
s.ios.dependency 'PingJourneyPlugin', '~> 2.0.0'
s.ios.dependency 'PingOidc', '~> 2.0.0'
end