加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
NFCPassportReader.podspec 968 Bytes
一键复制 编辑 原始数据 按行查看 历史
Andy Qua 提交于 2022-06-12 14:44 . Updated to 1.1.9
Pod::Spec.new do |spec|
spec.name = "NFCPassportReader"
spec.version = "1.1.9"
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" => "andy.qua@gmail.com" }
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.180'
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
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化