mirror of
https://github.com/status-im/react-native-mapbox-gl.git
synced 2026-08-31 13:01:15 +00:00
For example this fix the setup requirement that the Xcode header search path must be changed anymore / and anytime the node_modules folder was resetted.
26 lines
1.3 KiB
Ruby
26 lines
1.3 KiB
Ruby
Pod::Spec.new do |s|
|
|
s.name = "RCTMapboxGL"
|
|
s.version = "1.0.0"
|
|
s.summary = "A Mapbox GL react native module for creating custom maps."
|
|
s.homepage = "https://github.com/mapbox/react-native-mapbox-gl#readme"
|
|
s.license = "BSD"
|
|
s.author = "Bobby Sudekum"
|
|
s.source = { :git => "https://github.com/mapbox/react-native-mapbox-gl.git", :tag => "#{s.version}" }
|
|
s.platform = :ios, "7.0"
|
|
|
|
s.source_files = "RCTMapboxGL/RCTMapboxGL.{h,m}", "RCTMapboxGL/RCTMapboxGLManager.{h,m}"
|
|
s.dependency "Mapbox-iOS-SDK", "2.1.2"
|
|
|
|
# These resources, library, frameworks and libraries spec is already part of
|
|
# the Mapbox-iOS-SDK dependency above. The npm `preinstall` hock download
|
|
# them automatically. Instead of the dependency we could also use the
|
|
# following attributes to use the local files...
|
|
# I keep this it it makes development easier of fix somes "troubles" later.
|
|
|
|
# s.resources = "RCTMapboxGL/Mapbox.bundle", "RCTMapboxGL/Settings.bundle"
|
|
# s.vendored_libraries = "RCTMapboxGL/libMapbox.a"
|
|
# s.framework = "CoreTelephony", "GLKit", "ImageIO", "MobileCoreServices", "QuartzCore", "SystemConfiguration"
|
|
# s.libraries = "c++", "sqlite3", "z"
|
|
|
|
end
|