-
Notifications
You must be signed in to change notification settings - Fork 57
/
DSF_QRCode.podspec
32 lines (25 loc) · 1.25 KB
/
DSF_QRCode.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
Pod::Spec.new do |s|
s.name = 'DSF_QRCode'
s.version = '23.0.0'
s.summary = 'A simple drop-in macOS/iOS/tvOS/watchOS QR Code generator view for Swift, Objective-C and SwiftUI.'
s.homepage = 'https://github.com/dagronf/QRCode'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Darren Ford' => 'dford_au-reg@yahoo.com' }
s.source = { :git => 'https://github.com/dagronf/QRCode.git', :tag => s.version.to_s }
s.resource_bundles = {
'DSF_QRCode' => 'Sources/QRCode/PrivacyInfo.xcprivacy'
}
s.module_name = 'QRCode'
s.dependency 'SwiftQRCodeGenerator', '~> 2.0.2'
s.dependency 'SwiftImageReadWrite', '~> 1.9.1'
s.osx.deployment_target = '10.13'
s.ios.deployment_target = '11.0'
s.tvos.deployment_target = '13.0'
s.watchos.deployment_target = '6.0'
s.osx.framework = 'AppKit'
s.ios.framework = 'UIKit'
s.tvos.framework = 'UIKit'
s.watchos.framework = 'UIKit'
s.source_files = 'Sources/QRCode/**/*.swift'
s.swift_versions = ['5.4', '5.5', '5.6', '5.7', '5.8', '5.9', '5.10']
end