-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathPingBrowser.podspec
More file actions
38 lines (31 loc) · 1.2 KB
/
PingBrowser.podspec
File metadata and controls
38 lines (31 loc) · 1.2 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
#
# Be sure to run `pod lib lint PingBrowser.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 = 'PingBrowser'
s.version = '2.0.0'
s.summary = 'PingBrowser module for the Ping iOS SDK'
s.description = <<-DESC
The PingBrowser module for the Ping iOS SDK is a library for using in-app browsers for the Ping iOS SDK.
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 = 'PingBrowser'
s.swift_versions = ['5.0', '5.1', '6.0']
s.ios.deployment_target = '16.0'
base_dir = "Browser/Browser"
s.source_files = base_dir + '/**/*.swift', base_dir + '/**/*.c', base_dir + '/**/*.h'
s.resource_bundles = {
'Browser' => [base_dir + '/*.xcprivacy']
}
s.ios.dependency 'PingLogger', '~> 2.0.0'
end