-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSegment-GoogleAnalytics.podspec
43 lines (34 loc) · 1.59 KB
/
Segment-GoogleAnalytics.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
40
41
42
43
Pod::Spec.new do |s|
s.name = "Segment-GoogleAnalytics"
s.version = "1.1.4"
s.summary = "Google Analytics Integration for Segment's analytics-ios library."
s.description = <<-DESC
Analytics for iOS provides a single API that lets you
integrate with over 100s of tools.
This is the Google Analytics integration for the iOS library.
DESC
s.homepage = "http://segment.com/"
s.license = { :type => 'MIT' }
s.author = { "Segment" => "[email protected]" }
s.source = { :git => "https://github.com/segment-integrations/analytics-ios-integration-google-analytics.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/segment'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.dependency 'Analytics', '~> 3.0'
s.subspec 'GoogleIDFASupport' do |idfa|
# This will get bundled unless a subspec is specified
idfa.dependency 'GoogleIDFASupport', '~> 3.14'
end
s.subspec 'Core' do |core|
core.dependency 'GoogleAnalytics', '~> 3.14'
# For users who don't want to bundle GoogleIDFASupport
# If a user specified Segment-GoogleAnalytics/Core, we won't bundle IDFA
end
s.subspec 'StaticLibWorkaround' do |workaround|
# For users who are unable to bundle static libraries as dependencies
# you can choose this subspec, but be sure to include the following in your Podfile:
# pod 'GoogleAnalytics'
# pod 'GoogleIDFASupport' <- optional
end
end