forked from CocoaPods/Specs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request CocoaPods#3025 from TheMjolnir/master
[Update] Google-Maps-iOS-SDK (1.4.0)
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'Google-Maps-iOS-SDK' | ||
s.version = '1.4.0' | ||
s.summary = 'Google Maps SDK for iOS.' | ||
s.description = 'With the Google Maps SDK for iOS, you can add maps based on Google maps data to your application.' | ||
s.homepage = 'https://developers.google.com/maps/documentation/ios/' | ||
s.license = { | ||
:type => 'Copyright', | ||
:text => 'Copyright 2013 Google Inc.' | ||
} | ||
s.author = 'Google Inc.' | ||
|
||
s.source = { :http => 'https://dl.google.com/geosdk/GoogleMaps-iOS-1.4.0.zip', :flatten => true } | ||
s.platform = :ios | ||
s.ios.deployment_target = '5.1' | ||
|
||
framework_path = 'GoogleMaps.framework' | ||
|
||
s.source_files = "#{framework_path}/Versions/A/Headers/*.h" | ||
s.resource = "#{framework_path}/Versions/A/Resources/GoogleMaps.bundle" | ||
|
||
s.preserve_paths = framework_path | ||
s.header_dir = 'GoogleMaps' | ||
|
||
s.frameworks = 'GoogleMaps', 'AVFoundation', 'CoreData', 'CoreLocation', 'CoreText', 'GLKit', 'ImageIO', 'OpenGLES', 'QuartzCore', 'SystemConfiguration', 'CoreGraphics' | ||
s.libraries = 'icucore', 'c++', 'z' | ||
|
||
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/Google-Maps-iOS-SDK"' } | ||
end |