-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPingDavinci.podspec
39 lines (32 loc) · 1.36 KB
/
PingDavinci.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
38
39
#
# Be sure to run `pod lib lint PingDavinci.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 = 'PingDavinci'
s.version = '1.0.0'
s.summary = 'PingDavinci SDK for iOS'
s.description = <<-DESC
The PingDavinci SDK is a powerful and flexible library for Authentication and Authorization. It is designed to be easy to use and extensible. It provides a simple API for navigating the authentication flow and handling the various states that can
occur during the authentication process.
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 = 'PingDavinci'
s.swift_versions = ['5.0', '5.1']
s.ios.deployment_target = '13.0'
base_dir = "Davinci/Davinci"
s.source_files = base_dir + '/**/*.swift', base_dir + '/**/*.c', base_dir + '/**/*.h'
s.resource_bundles = {
'Davinci' => [base_dir + '/*.xcprivacy']
}
s.ios.dependency 'PingOidc', '~> 1.0.0'
end