-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathKlaviyoLocation.podspec
More file actions
19 lines (19 loc) · 1.12 KB
/
KlaviyoLocation.podspec
File metadata and controls
19 lines (19 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "KlaviyoLocation"
s.version = "5.2.3"
s.summary = "Location services and geofencing for the Klaviyo SDK"
s.description = <<-DESC
Use KlaviyoLocation to enable location-based tracking and geofencing capabilities in your iOS applications.
This module provides geofence management, location tracking, and location-based event triggers.
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/KlaviyoLocation/**/*.swift'
s.pod_target_xcconfig = { 'OTHER_SWIFT_FLAGS' => '-package-name KlaviyoLocation -package-name KlaviyoSwift -package-name KlaviyoCore' }
s.dependency 'KlaviyoSwift', '~> 5.2.3'
s.frameworks = 'CoreLocation'
end