forked from SocketMobile/cocoapods-capture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SKTCapture.podspec
28 lines (23 loc) · 1023 Bytes
/
SKTCapture.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 = "SKTCapture"
s.version = "1.3.133.1"
s.summary = "Capture SDK Swift for Socket Mobile wireless devices."
s.homepage = "https://www.socketmobile.com"
s.license = { :type => "COMMERCIAL", :file => "LICENSE" }
s.author = { "Socket" => "[email protected]" }
s.documentation_url = "https://docs.socketmobile.com/capture/ios/en/latest/"
s.platform = :ios, "10.0"
s.source = {
:git => "https://github.com/SocketMobile/cocoapods-capture.git",
:tag => "1.3.133.1"
}
s.ios.deployment_target = "10.0"
s.swift_version = '5.0'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.0', 'SWIFT_OPTIMIZATION_LEVEL' => '-Owholemodule' }
s.static_framework = true
s.source_files = "**/*.{h,swift}"
s.resources = ['*.wav', '*.pem']
s.vendored_frameworks = 'lib/SKTCapture.xcframework'
s.ios.libraries = "c++","icucore"
s.frameworks = "ExternalAccessory", "AudioToolbox", "AVFoundation", "CoreBluetooth"
end