-
Notifications
You must be signed in to change notification settings - Fork 0
/
PingLogger.podspec
34 lines (29 loc) · 1.08 KB
/
PingLogger.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
#
# Be sure to run `pod lib lint PingLogger.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 = 'PingLogger'
s.version = '0.9.0-beta2'
s.summary = 'PingLogger SDK for iOS'
s.description = <<-DESC
The PingLogger SDK provides a versatile logging interface and a set of common loggers for the Ping SDKs.
DESC
s.homepage = 'https://www.pingidentity.com/'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = 'Ping Identity'
s.source = {
:git => 'https://github.com/ForgeRock/unified-sdk-ios.git',
:tag => s.version.to_s
}
s.module_name = 'PingLogger'
s.ios.deployment_target = '13.0'
base_dir = "PingLogger/PingLogger"
s.source_files = base_dir + '/**/*.swift', base_dir + '/**/*.h'
s.resource_bundles = {
'PingLogger' => [base_dir + '/*.xcprivacy']
}
end