forked from pubnub/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PubNubSwift.podspec
35 lines (28 loc) · 1.23 KB
/
PubNubSwift.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
Pod::Spec.new do |s|
s.name = 'PubNubSwift'
s.version = '7.2.0'
s.homepage = 'https://github.com/pubnub/swift'
s.documentation_url = 'https://www.pubnub.com/docs/swift-native/pubnub-swift-sdk'
s.authors = { 'PubNub, Inc.' => '[email protected]' }
s.social_media_url = 'https://twitter.com/pubnub'
s.license = { :type => 'PubNub Software Development Kit License', :file => 'LICENSE' }
s.source = { :git => 'https://github.com/pubnub/swift.git', :tag => s.version }
s.summary = 'PubNub Swift-based SDK for iOS, macOS, tvOS, & watchOS'
s.description = <<-DESC
The PubNub Real-Time Network. Build real-time apps quickly and scale them globally.
DESC
s.ios.deployment_target = '12.0'
s.osx.deployment_target = '10.15'
s.tvos.deployment_target = '12.0'
s.watchos.deployment_target = '4.0'
s.swift_version = '5.0'
s.module_name = 'PubNub'
s.source_files = 'Sources/**/*.swift'
s.resource_bundles = { "PubNubSwift" => ["Sources/PubNub/PrivacyInfo.xcprivacy"]}
if defined?($PubNubAsStaticFramework)
Pod::UI.puts "#{s.name}: Using overridden static_framework value of '#{$PubNubAsStaticFramework}'"
s.static_framework = $PubNubAsStaticFramework
else
s.static_framework = false
end
end