-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathKlaviyoSwift.podspec
More file actions
22 lines (20 loc) · 1.17 KB
/
KlaviyoSwift.podspec
File metadata and controls
22 lines (20 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "KlaviyoSwift"
s.version = "5.2.1"
s.summary = "Incorporate Klaviyo's event and person tracking and push notifications functionality into iOS applications"
s.description = <<-DESC
Use the Klaviyo SDK to incorporate Klaviyo's event and person tracking functionality and push notifications within iOS applications. Written in Swift.'
DESC
s.homepage = "https://github.com/klaviyo/klaviyo-swift-sdk"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Mobile @ Klaviyo" => "mobile@klaviyo.com" }
s.source = { :git => "https://github.com/klaviyo/klaviyo-swift-sdk.git", :tag => s.version.to_s }
s.swift_version = '5.7'
s.platform = :ios
s.ios.deployment_target = '13.0'
s.source_files = 'Sources/KlaviyoSwift/**/*.swift'
s.resource_bundles = {"KlaviyoSwift" => ["Sources/KlaviyoSwift/PrivacyInfo.xcprivacy"]}
s.pod_target_xcconfig = { 'OTHER_SWIFT_FLAGS' => '-package-name KlaviyoSwift -package-name KlaviyoCore' }
s.dependency 'KlaviyoCore', '~> 5.2.1'
s.dependency 'AnyCodable-FlightSchool'
end