forked from poulpix/PXGoogleDirections
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPXGoogleDirections.podspec
25 lines (21 loc) · 1.61 KB
/
PXGoogleDirections.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
Pod::Spec.new do |s|
s.name = 'PXGoogleDirections'
s.version = '1.3'
s.homepage = "https://github.com/poulpix/PXGoogleDirections"
s.summary = 'Google Directions API SDK for iOS, entirely written in Swift'
s.screenshots = [ 'https://raw.githubusercontent.com/poulpix/PXGoogleDirections/master/Sample/SampleScreen1.png', 'https://raw.githubusercontent.com/poulpix/PXGoogleDirections/master/Sample/SampleScreen2.png' ]
s.author = { 'Romain L' => '[email protected]' }
s.license = { :type => 'BSD', :file => 'LICENSE' }
s.social_media_url = "https://twitter.com/_RomainL"
s.platforms = { :ios => '8.1' }
s.ios.deployment_target = '8.1'
s.source_files = 'PXGoogleDirections/*.{h,swift}'
s.module_name = 'PXGoogleDirections'
s.source = { :git => "https://github.com/poulpix/PXGoogleDirections.git", :tag => "1.3" }
s.requires_arc = true
s.libraries = "c++", "icucore", "z"
s.frameworks = "Accelerate", "AVFoundation", "CoreBluetooth", "CoreData", "CoreLocation", "CoreText", "Foundation", "GLKit", "ImageIO", "OpenGLES", "QuartzCore", "Security", "SystemConfiguration", "CoreGraphics", "GoogleMapsCore", "GoogleMapsBase", "GoogleMaps"
#s.dependency 'GoogleMaps', '~> 2.0'
s.resource = 'Dependencies/GoogleMaps.framework/Versions/A/Resources/GoogleMaps.bundle'
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '$(PODS_ROOT)/PXGoogleDirections/Dependencies' }
end