forked from snowplow/snowplow-ios-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SnowplowTracker.podspec
40 lines (32 loc) · 1.99 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
36
37
38
39
Pod::Spec.new do |s|
s.name = "SnowplowTracker"
s.version = "2.2.0"
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://snowplowanalytics.com"
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" => "support@snowplowanalytics.com" }
s.source = { :git => "https://github.com/snowplow/snowplow-objc-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 = '9.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.requires_arc = true
s.source_files = 'Snowplow/**/*.{m,h}'
s.public_header_files = 'Snowplow/**/*.{h}'
s.exclude_files = 'Snowplow/include/*.{m,h}'
s.watchos.exclude_files = [
'Snowplow/**/SNOWReachability.*',
]
s.ios.frameworks = 'CoreTelephony', 'UIKit', 'Foundation'
s.osx.frameworks = 'AppKit', 'Foundation'
s.tvos.frameworks = 'UIKit', 'Foundation'
s.pod_target_xcconfig = { "DEFINES_MODULE" => "YES" }
s.dependency 'FMDB', '~> 2.7'
end