forked from fritzlabs/fritz-ai-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFritzVision.podspec
24 lines (20 loc) · 932 Bytes
/
FritzVision.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
Pod::Spec.new do |s|
s.name = 'FritzVision'
s.version = '7.0.1'
s.summary = 'Official Fritz SDK for Swift 5.0 and Objective-C'
s.homepage = 'https://fritz.ai'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE.md' }
s.author = { 'Jameson Toole' => '[email protected]' }
s.source = { :git => 'https://github.com/fritzlabs/fritz-ai-ios-sdk.git', :tag => s.version.to_s }
s.requires_arc = true
s.ios.deployment_target = '10.0'
s.swift_version = '5.0'
s.weak_framework = 'CoreML'
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.dependency 'FritzCore', '7.0.1'
s.dependency 'FritzManagedModel', '7.0.1'
s.dependency 'FritzCoreMLHelpers', '7.0.1'
s.source_files = 'Source/FritzVision/**/*.{h,swift,c,mlmodel}'
s.resources = ['Source/FritzVision/ObjectDetection/Helpers/Anchors.csv']
end