forked from snowplow/snowplow-ios-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SnowplowTracker.podspec
35 lines (30 loc) · 2.02 KB
/
SnowplowTracker.podspec
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
26
27
28
29
30
31
32
33
34
35
Pod::Spec.new do |s|
s.name = "SnowplowTracker"
s.version = "6.0.3"
s.summary = "Snowplow event tracker for iOS, macOS, tvOS, watchOS for apps and games."
s.description = <<-DESC
Snowplow is a mobile and event analytics platform with a difference: rather than tell our users how they should analyze their data, we deliver their event-level data in their own data warehouse, on their own Amazon Redshift or Postgres database, so they can analyze it any way they choose. Snowplow mobile is used by data-savvy games companies and app developers to better understand their users and how they engage with their games and applications. Snowplow is open source using the business-friendly Apache License, Version 2.0 and scales horizontally to many billions of events.
DESC
s.homepage = "http://snowplow.io"
s.screenshots = "https://d3i6fms1cm1j0i.cloudfront.net/github-wiki/images/snowplow-logo-large.png"
s.license = 'Apache License, Version 2.0'
s.author = { "Snowplow Analytics Ltd" => "[email protected]" }
s.source = { :git => "https://github.com/snowplow/snowplow-ios-tracker.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/SnowPlowData'
s.documentation_url = 'https://github.com/snowplow/snowplow/wiki/iOS-Tracker'
s.swift_version = '5.0'
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '12.0'
s.watchos.deployment_target = '6.0'
s.source_files = 'Sources/**/*.swift'
s.ios.frameworks = 'CoreTelephony', 'UIKit', 'Foundation'
s.osx.frameworks = 'AppKit', 'Foundation'
s.tvos.frameworks = 'UIKit', 'Foundation'
if s.respond_to?(:visionos)
s.visionos.deployment_target = '1.0'
s.visionos.frameworks = 'UIKit', 'Foundation'
end
s.pod_target_xcconfig = { "DEFINES_MODULE" => "YES" }
s.resource_bundles = {'SnowplowTracker_Privacy' => ['PrivacyInfo.xcprivacy']}
end