Skip to content

Instantly share code, notes, and snippets.

@devxoul
Last active October 27, 2015 17:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devxoul/161fb4d57067327d9d07 to your computer and use it in GitHub Desktop.
Save devxoul/161fb4d57067327d9d07 to your computer and use it in GitHub Desktop.
GoogleAnalytics 3.14.0 podspec (This version is not yet uploaded to CocoaPods, so we have to write podspec manually)
Pod::Spec.new do |s|
s.name = "GoogleAnalytics"
s.version = "3.14.0"
s.summary = "Google Analytics - measure your app performance"
s.description = "Google Analytics lets you track application events you care about and gain insights from discovery and installation to conversion and engagement"
s.homepage = "https://www.google.com/analytics"
s.license = { :type => "Copyright", :text => "Copyright 2015 Google Inc." }
s.author = "Google, Inc."
s.platform = :ios, "5.0"
s.frameworks = ["CoreData", "SystemConfiguration"]
s.libraries = ["sqlite3", "z"]
s.source = { :http => "https://dl.google.com/googleanalyticsservices/GoogleAnalyticsServicesiOS_3.14.zip" }
s.vendored_libraries = ["GoogleAnalyticsServicesiOS_3.14/libGoogleAnalyticsServices.a"]
s.public_header_files = "GoogleAnalyticsServicesiOS_3.14/GoogleAnalytics/Library/*.h"
s.source_files = "GoogleAnalyticsServicesiOS_3.14/GoogleAnalytics/Library/*.h"
end
pod 'GoogleAnalytics', :podspec => 'GoogleAnalytics.podspec'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment