-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathPXGoogleDirections.podspec
executable file
·28 lines (24 loc) · 1.81 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
26
27
28
Pod::Spec.new do |s|
s.name = 'PXGoogleDirections'
s.version = '1.6'
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/SampleScreen1.png', 'https://raw.githubusercontent.com/poulpix/PXGoogleDirections/master/SampleScreen2.png' ]
s.author = { 'Romain L' => 'dev.romain@me.com' }
s.license = { :type => 'BSD', :file => 'LICENSE' }
s.social_media_url = "https://twitter.com/_RomainL"
s.platforms = { :ios => '9.3' }
s.ios.deployment_target = '9.3'
s.swift_version = '4.2'
s.source_files = 'Sources/PXGoogleDirections/*.{h,swift}'
s.module_name = 'PXGoogleDirections'
s.source = { :git => "https://github.com/poulpix/PXGoogleDirections.git", :tag => "1.6" }
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.7'
s.resource = 'Dependencies/GoogleMaps.framework/Resources/GoogleMaps.bundle'
s.vendored_frameworks = "Dependencies/GoogleMaps.framework", "Dependencies/GoogleMapsBase.framework", "Dependencies/GoogleMapsCore.framework"
s.static_framework = true
#s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '$(PODS_ROOT)/PXGoogleDirections/Dependencies' }
end