-
Notifications
You must be signed in to change notification settings - Fork 13
/
KlaviyoSwift.podspec
21 lines (19 loc) · 1.06 KB
/
KlaviyoSwift.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "KlaviyoSwift"
s.version = "4.0.0"
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" => "[email protected]" }
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.dependency 'KlaviyoCore', '~> 4.0.0'
s.dependency 'AnyCodable-FlightSchool'
end