-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathPingDeviceClient.podspec
More file actions
39 lines (32 loc) · 1.38 KB
/
PingDeviceClient.podspec
File metadata and controls
39 lines (32 loc) · 1.38 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
32
33
34
35
36
37
38
39
#
# Be sure to run `pod lib lint PingDeviceClient.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 = 'PingDeviceClient'
s.version = '2.0.0'
s.summary = 'PingDeviceClient module for the Ping iOS SDK'
s.description = <<-DESC
DeviceClient module simplifies device management operations for Ping AIC. It provides a clean, type-safe API for managing authentication devices including OATH, Push, Bound, Profile, and WebAuthn devices.
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 = 'PingDeviceClient'
s.swift_versions = ['5.0', '5.1', '6.0']
s.ios.deployment_target = '16.0'
base_dir = "DeviceClient/DeviceClient"
s.source_files = base_dir + '/**/*.swift', base_dir + '/**/*.c', base_dir + '/**/*.h'
s.resource_bundles = {
'PingDeviceClient' => [base_dir + '/*.xcprivacy']
}
s.ios.dependency 'PingCommons', '~> 2.0.0'
s.ios.dependency 'PingNetwork', '~> 2.0.0'
end