-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFlexTrack.podspec
More file actions
25 lines (23 loc) · 1002 Bytes
/
Copy pathFlexTrack.podspec
File metadata and controls
25 lines (23 loc) · 1002 Bytes
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
Pod::Spec.new do |spec|
spec.name = "FlexTrack"
spec.version = "1.1.0"
spec.summary = "Consent-aware, deterministic analytics routing for Swift."
spec.description = <<-DESC
FlexTrack is a provider-agnostic analytics routing SDK for Apple platforms.
It provides deterministic sampling, consent-aware routing, durable offline
delivery, selective retry, tracking context, diagnostics, and native Swift
concurrency safety.
DESC
spec.homepage = "https://github.com/alirezat66/flex_track_swift"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Reza Taghizadeh" => "alirezataghizadeh66@gmail.com" }
spec.source = {
:git => "https://github.com/alirezat66/flex_track_swift.git",
:tag => spec.version.to_s
}
spec.swift_version = "6.2"
spec.ios.deployment_target = "15.0"
spec.osx.deployment_target = "12.0"
spec.source_files = "Sources/FlexTrack/**/*.swift"
spec.module_name = "FlexTrack"
end