forked from AndyQ/NFCPassportReader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NFCPassportReader.podspec
27 lines (19 loc) · 969 Bytes
/
NFCPassportReader.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
Pod::Spec.new do |spec|
spec.name = "NFCPassportReader"
spec.version = "2.0.1"
spec.summary = "This package handles reading an NFC Enabled passport using iOS 13 CoreNFC APIS"
spec.homepage = "https://github.com/AndyQ/NFCPassportReader"
spec.license = "MIT"
spec.author = { "Andy Qua" => "[email protected]" }
spec.platform = :ios
spec.ios.deployment_target = "12.0"
spec.source = { :git => "https://github.com/AndyQ/NFCPassportReader.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/**/*.{swift}"
spec.swift_version = "5.0"
spec.dependency "OpenSSL-Universal", '1.1.1900'
spec.xcconfig = { 'OTHER_LDFLAGS' => '-weak_framework CryptoKit -weak_framework CoreNFC -weak_framework CryptoTokenKit' }
spec.pod_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'
}
spec.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
end