-
Notifications
You must be signed in to change notification settings - Fork 26
/
MapboxVision.podspec
39 lines (28 loc) · 1.45 KB
/
MapboxVision.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
30
31
32
33
34
35
36
37
38
39
Pod::Spec.new do |s|
s.name = "MapboxVision"
s.version = "0.14.0"
s.summary = "ML empowered Vision framework"
s.description = <<-DESC
ML empowered Vision framework
DESC
s.homepage = 'https://www.mapbox.com/vision/'
s.documentation_url = 'https://docs.mapbox.com/ios/vision/'
s.license = { :type => "CUSTOM", :file => "Docs/LICENSE.md" }
s.author = { 'Mapbox' => '[email protected]' }
s.social_media_url = 'https://twitter.com/mapbox'
s.documentation_url = 'https://www.mapbox.com/vision/'
s.platform = :ios
s.ios.deployment_target = '11.2'
s.source = { :git => "https://github.com/mapbox/mapbox-vision-ios.git", :tag => "v#{s.version}" }
s.source_files = "MapboxVision/**/*.{swift,h,metal}", "Resources/**/*.swift"
s.resource = "Resources/Assets.xcassets"
s.requires_arc = true
s.swift_version = '4.2'
s.dependency "MapboxVisionNativeAll/Vision", "#{s.version}"
s.dependency "MapboxMobileEvents", "~> 0.10.5"
s.dependency "ZIPFoundation", "~> 0.9.11"
s.pod_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => '$(EXCLUDED_ARCHS__EFFECTIVE_PLATFORM_SUFFIX_$(EFFECTIVE_PLATFORM_SUFFIX)__NATIVE_ARCH_64_BIT_$(NATIVE_ARCH_64_BIT)__XCODE_$(XCODE_VERSION_MAJOR))',
'EXCLUDED_ARCHS__EFFECTIVE_PLATFORM_SUFFIX_simulator__NATIVE_ARCH_64_BIT_x86_64__XCODE_1200' => 'arm64 arm64e armv7 armv7s armv6 armv8'
}
end