-
Notifications
You must be signed in to change notification settings - Fork 20
/
MapboxSearch.podspec
29 lines (23 loc) · 1.19 KB
/
MapboxSearch.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
29
Pod::Spec.new do |s|
s.name = 'MapboxSearch'
s.version = '2.6.0'
s.summary = 'Search SDK for Mapbox Search API'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
MapboxSearch SDK implements basic search functionality over Mapbox Search API
Some iOS platform specifics applies.
DESC
s.homepage = 'https://www.mapbox.com/search-service'
s.license = { :type => 'Mapbox TOS', :file => 'MapboxSearch.xcframework/LICENSE.md' }
s.author = { 'Mapbox' => '[email protected]' }
s.source = { :http => "https://api.mapbox.com/downloads/v2/search-sdk/releases/ios/packages/#{s.version.to_s}/#{s.name}.zip" }
s.ios.deployment_target = '12.0'
s.swift_version = "5.9"
s.vendored_frameworks = "**/#{s.name}.xcframework"
s.dependency "MapboxCoreSearch", '2.6.0'
s.dependency "MapboxCommon", '24.8.0'
end