forked from mutualmobile/Google-Analytics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGoogleAnalytics-iOS-SDK.podspec
More file actions
33 lines (28 loc) · 1.37 KB
/
GoogleAnalytics-iOS-SDK.podspec
File metadata and controls
33 lines (28 loc) · 1.37 KB
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
Pod::Spec.new do |s|
s.name = "GoogleAnalytics-iOS-SDK"
s.version = "3.08"
s.summary = "GoogleAnalytics for iOS SDK."
s.description = <<-DESC
The Google Analytics SDK for iOS makes it easy for native iOS developers to collect user engagement data form their applications. Developers can then use the Google Analytics reports to measure:
* The number of active users are using their applications.
* From where in the world the application is being used.
* Adoption and usage of specific features.
* In-app purchases and transactions.
* And many other useful metrics...
DESC
s.homepage = "https://developers.google.com/analytics/devguides/collection/ios/v3/"
s.license = {
:type => 'Copyright',
:text => <<-LICENSE
Copyright 2009 - 2013 Google, Inc. All rights reserved.
LICENSE
}
s.author = 'Google Inc.'
s.source = { :git => "https://github.com/jonbrooks/Google-Analytics.git", :tag => "3.08" }
s.platform = :ios
s.source_files = 'GoogleAnalytics-iOS-SDK/Library/*.h'
s.preserve_paths = 'GoogleAnalytics-iOS-SDK/Library/*.a'
s.frameworks = 'AdSupport', 'CoreData', 'SystemConfiguration'
s.libraries = 'GoogleAnalyticsServices', 'sqlite3', 'z'
s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '"$(PODS_ROOT)/GoogleAnalytics-iOS-SDK/GoogleAnalytics-iOS-SDK/Library"' }
end