-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathKlaviyoUI.podspec
23 lines (23 loc) · 973 Bytes
/
KlaviyoUI.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "KlaviyoUI"
s.version = "0.1.0"
s.summary = "UI components for the Klaviyo"
s.description = <<-DESC
UI components and utilities for the Klaviyo SDK.
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, '13.0'
s.source_files = 'Sources/KlaviyoUI/**/*.swift'
s.resource_bundles = {
'KlaviyoUIResources' => [
'Sources/KlaviyoUI/InAppForms/Assets/*.{html}',
'Tests/KlaviyoUITests/Assets/*.{html}'
]
}
# update once modularization changes are merged in.
s.dependency 'KlaviyoSwift', '~> 4.0.0'
end