Last active
December 14, 2015 01:19
-
-
Save bastianh/5005121 to your computer and use it in GitHub Desktop.
fixed podspec google analytics after todays cocoapod update
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = "GoogleAnalytics-iOS-SDK" | |
s.version = "2.0beta4" | |
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/v2/" | |
s.license = { | |
:type => 'Copyright', | |
:text => <<-LICENSE | |
Copyright 2009 - 2012 Google, Inc. All rights reserved. | |
LICENSE | |
} | |
s.author = 'Google Inc.' | |
s.source = { :http => "http://dl.google.com/dl/gaformobileapps/GoogleAnalyticsiOS.zip" } | |
s.platform = :ios | |
s.source_files = '**/Library/*.h' | |
s.preserve_paths = '**/Library/libGoogleAnalytics.a' | |
s.frameworks = 'CFNetwork', 'CoreData', 'SystemConfiguration' | |
s.library = 'GoogleAnalytics' | |
s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '"$(PODS_ROOT)/GoogleAnalytics-iOS-SDK/GoogleAnalyticsiOS_2.0beta4/Library"' } | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment