@vppos/react-native-nfc 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +20 -0
- package/NFCSDK.podspec +40 -0
- package/android/build.gradle +85 -0
- package/android/gradle.properties +5 -0
- package/android/src/main/AndroidManifest.xml +31 -0
- package/android/src/main/AndroidManifestNew.xml +30 -0
- package/android/src/main/java/com/nfcsdk/ChipReader.kt +237 -0
- package/android/src/main/java/com/nfcsdk/NFCSDKModule.kt +78 -0
- package/android/src/main/java/com/nfcsdk/NFCSDKPackage.kt +17 -0
- package/android/src/main/java/com/nfcsdk/NFCScanActivity.kt +299 -0
- package/android/src/main/java/com/nfcsdk/utils/Dg13Parser.kt +278 -0
- package/android/src/main/java/com/nfcsdk/utils/FaceExtractor.kt +40 -0
- package/android/src/main/java/com/nfcsdk/utils/MrzUtils.kt +75 -0
- package/android/src/main/res/drawable/bg_nfc_bottom_sheet.xml +13 -0
- package/android/src/main/res/drawable/bg_nfc_sheet_handle.xml +9 -0
- package/android/src/main/res/layout/activity_nfc.xml +110 -0
- package/android/src/main/res/values/styles.xml +10 -0
- package/android/src/main/res/xml/nfc_tech_filter.xml +8 -0
- package/ios/ChipReader.swift +258 -0
- package/ios/NFCSDK-Bridging-Header.h +2 -0
- package/ios/NFCSDK.mm +9 -0
- package/ios/NFCSDK.swift +112 -0
- package/ios/NFCSDKSession.swift +5 -0
- package/ios/utils/DG13Parser.swift +302 -0
- package/ios/utils/MrzUtils.swift +49 -0
- package/lib/module/errors.js +9 -0
- package/lib/module/errors.js.map +1 -0
- package/lib/module/index.js +118 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/package.json +1 -0
- package/lib/module/types.js +2 -0
- package/lib/module/types.js.map +1 -0
- package/lib/typescript/package.json +1 -0
- package/lib/typescript/src/errors.d.ts +4 -0
- package/lib/typescript/src/errors.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +80 -0
- package/lib/typescript/src/index.d.ts.map +1 -0
- package/lib/typescript/src/types.d.ts +45 -0
- package/lib/typescript/src/types.d.ts.map +1 -0
- package/package.json +155 -0
- package/src/errors.ts +6 -0
- package/src/index.tsx +141 -0
- package/src/types.ts +45 -0
- package/vendor/ios-passport-reader/CHANGELOG +362 -0
- package/vendor/ios-passport-reader/CODE_OF_CONDUCT.md +77 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/AppDelegate.swift +39 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/Contents.json +158 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-40.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-72.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-76.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-small-50.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-small-50@2x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-small.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-small@2x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-small@3x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon@2x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/ios-marketing.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/notification-icon@2x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/notification-icon@3x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/notification-icon~ipad.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/notification-icon~ipad@2x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/Contents.json +6 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/background.imageset/Contents.json +21 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/background.imageset/background.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/head.imageset/Contents.json +21 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Assets.xcassets/head.imageset/head.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Base.lproj/LaunchScreen.storyboard +25 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Extensions/FileManagerExt.swift +16 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Extensions/StringExt.swift +40 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Extensions/UIApplicationExt.swift +21 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Info.plist +77 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Model/PassportUtils.swift +76 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Model/SettingsStore.swift +107 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/NFCPassportReader.entitlements +10 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/SceneDelegate.swift +57 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Views/DetailsView.swift +197 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Views/ExportPassportView.swift +164 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Views/HelperViews/CheckBoxView.swift +48 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Views/HelperViews/ViewExt.swift +20 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Views/HelperViews/ViewModifiers.swift +41 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Views/MRZEntryView.swift +125 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Views/MRZScannerViewController.swift +90 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Views/MainView.swift +214 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Views/PassportSummaryView.swift +111 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Views/PassportView.swift +73 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Views/SettingsView.swift +63 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/Views/StoredPassportView.swift +152 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/masterList.pem +32 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp/readme.md +10 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp.xcodeproj/project.pbxproj +695 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp.xcodeproj/xcshareddata/xcschemes/NFCPassportReader.xcscheme +106 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp.xcworkspace/contents.xcworkspacedata +10 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderApp.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderAppTests/DataGroupParsingTests.swift +189 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderAppTests/Info.plist +22 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderAppTests/NFCPassportReaderTests.swift +260 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/NFCPassportReaderAppTests/PACETests.swift +112 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/Podfile +22 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/Podfile.lock +35 -0
- package/vendor/ios-passport-reader/Examples/Example_CocoaPods/README.md +2 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/AppDelegate.swift +39 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/Contents.json +158 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-40.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-72.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-76.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-small-50.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-small-50@2x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-small.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-small@2x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon-small@3x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/icon@2x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/ios-marketing.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/notification-icon@2x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/notification-icon@3x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/notification-icon~ipad.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/AppIcon.appiconset/notification-icon~ipad@2x.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/Contents.json +6 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/background.imageset/Contents.json +21 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/background.imageset/background.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/head.imageset/Contents.json +21 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Assets.xcassets/head.imageset/head.png +0 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Base.lproj/LaunchScreen.storyboard +25 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Extensions/FileManagerExt.swift +16 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Extensions/StringExt.swift +40 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Extensions/UIApplicationExt.swift +21 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Info.plist +79 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Model/PassportUtils.swift +99 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Model/SettingsStore.swift +98 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Model/SettingsStoreCAN.swift +75 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/MrzScanner/LICENSE +21 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/MrzScanner/PreviewView.swift +34 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/MrzScanner/StringUtils.swift +160 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/MrzScanner/ViewController.swift +320 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/MrzScanner/VisionViewController.swift +163 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/NFCPassportReader.entitlements +10 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/SceneDelegate.swift +58 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Views/CANViews/CanKeyView.swift +251 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Views/CANViews/MRZEntryViewCanKey.swift +65 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Views/CANViews/PassportViewCAN.swift +73 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Views/DetailsView.swift +193 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Views/ExportPassportView.swift +164 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Views/HelperViews/CheckBoxView.swift +48 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Views/HelperViews/ViewExt.swift +20 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Views/HelperViews/ViewModifiers.swift +41 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Views/MRZEntryView.swift +125 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Views/MRZScannerViewController.swift +90 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Views/MainView.swift +264 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Views/PassportSummaryView.swift +111 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Views/PassportView.swift +73 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Views/SettingsView.swift +47 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/Views/StoredPassportView.swift +149 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/masterList.pem +32 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp/readme.md +10 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp.xcodeproj/project.pbxproj +683 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +25 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderApp.xcodeproj/xcshareddata/xcschemes/NFCPassportReader.xcscheme +106 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderAppTests/DataGroupParsingTests.swift +190 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderAppTests/Info.plist +22 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderAppTests/NFCPassportReaderTests.swift +260 -0
- package/vendor/ios-passport-reader/Examples/Example_SPM/NFCPassportReaderAppTests/PACETests.swift +112 -0
- package/vendor/ios-passport-reader/LICENSE +21 -0
- package/vendor/ios-passport-reader/NFCPassportReader.podspec +27 -0
- package/vendor/ios-passport-reader/Package.swift +29 -0
- package/vendor/ios-passport-reader/README.md +141 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/AES_3DES_DESEncryption.swift +377 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/BACHandler.swift +194 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/ChipAuthenticationHandler.swift +224 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/DataGroupHash.swift +16 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/DataGroupParser.swift +36 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/DataGroups/ActiveAuthenticationInfo.swift +69 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/DataGroups/COM.swift +61 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/DataGroups/CardAccess.swift +38 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/DataGroups/ChipAuthenticationInfo.swift +135 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/DataGroups/ChipAuthenticationPublicKeyInfo.swift +53 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/DataGroups/DataGroup.swift +103 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/DataGroups/DataGroup1.swift +111 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/DataGroups/DataGroup11.swift +66 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/DataGroups/DataGroup12.swift +75 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/DataGroups/DataGroup14.swift +37 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/DataGroups/DataGroup15.swift +46 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/DataGroups/DataGroup2.swift +163 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/DataGroups/DataGroup7.swift +46 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/DataGroups/DataGroupId.swift +105 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/DataGroups/NotImplementedDG.swift +16 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/DataGroups/PACEInfo.swift +415 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/DataGroups/SOD.swift +240 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/DataGroups/SecurityInfo.swift +136 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/Errors.swift +148 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/Logging.swift +32 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/Models/FaceImageInfo.swift +161 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/NFCPassportModel.swift +540 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/NFCViewDisplayMessage.swift +60 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/OpenSSLUtils.swift +705 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/PACEHandler.swift +627 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/PassportReader.swift +387 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/Resources/PrivacyInfo.xcprivacy +14 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/ResponseAPDU.swift +25 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/SecureMessaging.swift +301 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/SecureMessagingSessionKeyGenerator.swift +156 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/SimpleASN1DumpParser.swift +173 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/TagReader.swift +374 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/Utils.swift +430 -0
- package/vendor/ios-passport-reader/Sources/NFCPassportReader/X509Wrapper.swift +168 -0
- package/vendor/ios-passport-reader/scripts/README.md +45 -0
- package/vendor/ios-passport-reader/scripts/extract.py +197 -0
|
@@ -0,0 +1,695 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 51;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
28BAEE044BE68A5986B97866 /* Pods_NFCPassportReaderApp.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A7BD003B33886ED0F3F03325 /* Pods_NFCPassportReaderApp.framework */; };
|
|
11
|
+
8C4EEF9CDD6DAFEF26F8909A /* Pods_NFCPassportReaderAppTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA39DA603B1A7EBD8FC38112 /* Pods_NFCPassportReaderAppTests.framework */; };
|
|
12
|
+
A1298C9F25D53A5C00F5713E /* ViewExt.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1298C9E25D53A5C00F5713E /* ViewExt.swift */; };
|
|
13
|
+
A1614B9225D5856600191749 /* ExportPassportView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1614B9125D5856600191749 /* ExportPassportView.swift */; };
|
|
14
|
+
A16EB23122A9E9E10008F53F /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = A16EB23022A9E9E10008F53F /* AppDelegate.swift */; };
|
|
15
|
+
A16EB23322A9E9E10008F53F /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = A16EB23222A9E9E10008F53F /* SceneDelegate.swift */; };
|
|
16
|
+
A16EB23A22A9E9E20008F53F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A16EB23922A9E9E20008F53F /* Assets.xcassets */; };
|
|
17
|
+
A16EB23D22A9E9E20008F53F /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A16EB23B22A9E9E20008F53F /* LaunchScreen.storyboard */; };
|
|
18
|
+
A17134BE22C8EF7200C457C3 /* MainView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A17134BD22C8EF7100C457C3 /* MainView.swift */; };
|
|
19
|
+
A17134C022C8F0A600C457C3 /* PassportUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = A17134BF22C8F0A600C457C3 /* PassportUtils.swift */; };
|
|
20
|
+
A17375F525F78B0D005995DA /* PACETests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A17375F425F78B0C005995DA /* PACETests.swift */; };
|
|
21
|
+
A1769DF725D3E318006002D1 /* SettingsStore.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1769DF625D3E318006002D1 /* SettingsStore.swift */; };
|
|
22
|
+
A1816E9C22C9059F00F546A0 /* PassportView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1816E9B22C9059F00F546A0 /* PassportView.swift */; };
|
|
23
|
+
A18248C22369D17300581384 /* DetailsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A18248C12369D17300581384 /* DetailsView.swift */; };
|
|
24
|
+
A182DE6125DD6F1300341204 /* StoredPassportView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A182DE6025DD6F1300341204 /* StoredPassportView.swift */; };
|
|
25
|
+
A182DE6325DD730D00341204 /* FileManagerExt.swift in Sources */ = {isa = PBXBuildFile; fileRef = A182DE6225DD730D00341204 /* FileManagerExt.swift */; };
|
|
26
|
+
A182DE6825DD7EA600341204 /* MRZScannerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A182DE6725DD7EA600341204 /* MRZScannerViewController.swift */; };
|
|
27
|
+
A1A13B9525B8A29E0026074C /* UIApplicationExt.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1A13B9425B8A29E0026074C /* UIApplicationExt.swift */; };
|
|
28
|
+
A1A4C0F725B5E4D70070908B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1A4C0F625B5E4D70070908B /* Foundation.framework */; };
|
|
29
|
+
A1C234C225DD19DE003FFD79 /* PassportSummaryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1C234C125DD19DE003FFD79 /* PassportSummaryView.swift */; };
|
|
30
|
+
A1CE83AC22C91D1300E3EACF /* StringExt.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1CE83AB22C91D1300E3EACF /* StringExt.swift */; };
|
|
31
|
+
A1DD3F3F22C535F10067255C /* masterList.pem in Resources */ = {isa = PBXBuildFile; fileRef = A1DD3F3E22C535F00067255C /* masterList.pem */; };
|
|
32
|
+
A1EBC5242370BAB2004DD19E /* DataGroupParsingTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1EBC5212370BAB2004DD19E /* DataGroupParsingTests.swift */; };
|
|
33
|
+
A1EBC5252370BAB2004DD19E /* NFCPassportReaderTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1EBC5222370BAB2004DD19E /* NFCPassportReaderTests.swift */; };
|
|
34
|
+
A1FDC52E25D3F15D00D22FF4 /* SettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1FDC52D25D3F15D00D22FF4 /* SettingsView.swift */; };
|
|
35
|
+
A1FDC53225D3F19E00D22FF4 /* ViewModifiers.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1FDC53125D3F19E00D22FF4 /* ViewModifiers.swift */; };
|
|
36
|
+
A1FDC53425D3F1DE00D22FF4 /* CheckBoxView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1FDC53325D3F1DE00D22FF4 /* CheckBoxView.swift */; };
|
|
37
|
+
A1FDC53625D43AB400D22FF4 /* MRZEntryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1FDC53525D43AB400D22FF4 /* MRZEntryView.swift */; };
|
|
38
|
+
/* End PBXBuildFile section */
|
|
39
|
+
|
|
40
|
+
/* Begin PBXContainerItemProxy section */
|
|
41
|
+
A1EBC5122370B88D004DD19E /* PBXContainerItemProxy */ = {
|
|
42
|
+
isa = PBXContainerItemProxy;
|
|
43
|
+
containerPortal = A16EB22522A9E9E10008F53F /* Project object */;
|
|
44
|
+
proxyType = 1;
|
|
45
|
+
remoteGlobalIDString = A16EB22C22A9E9E10008F53F;
|
|
46
|
+
remoteInfo = NFCPassportReaderApp;
|
|
47
|
+
};
|
|
48
|
+
/* End PBXContainerItemProxy section */
|
|
49
|
+
|
|
50
|
+
/* Begin PBXFileReference section */
|
|
51
|
+
29684A8780D423313153D8B6 /* Pods-NFCPassportReaderAppTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NFCPassportReaderAppTests.release.xcconfig"; path = "Target Support Files/Pods-NFCPassportReaderAppTests/Pods-NFCPassportReaderAppTests.release.xcconfig"; sourceTree = "<group>"; };
|
|
52
|
+
3B684038F7C81C32BA310074 /* Pods-NFCPassportReaderAppTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NFCPassportReaderAppTests.debug.xcconfig"; path = "Target Support Files/Pods-NFCPassportReaderAppTests/Pods-NFCPassportReaderAppTests.debug.xcconfig"; sourceTree = "<group>"; };
|
|
53
|
+
574315DEF74ED0B9CC6A8DC7 /* Pods-NFCPassportReaderApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NFCPassportReaderApp.debug.xcconfig"; path = "Target Support Files/Pods-NFCPassportReaderApp/Pods-NFCPassportReaderApp.debug.xcconfig"; sourceTree = "<group>"; };
|
|
54
|
+
A1095E982588FBB100D2A46A /* CHANGELOG */ = {isa = PBXFileReference; lastKnownFileType = text; name = CHANGELOG; path = ../../../CHANGELOG; sourceTree = "<group>"; };
|
|
55
|
+
A1095E9B2589032D00D2A46A /* readme.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; name = readme.md; path = ../../readme.md; sourceTree = "<group>"; };
|
|
56
|
+
A1298C9E25D53A5C00F5713E /* ViewExt.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewExt.swift; sourceTree = "<group>"; };
|
|
57
|
+
A1614B9125D5856600191749 /* ExportPassportView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ExportPassportView.swift; sourceTree = "<group>"; };
|
|
58
|
+
A16EB22D22A9E9E10008F53F /* NFCPassportReaderApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = NFCPassportReaderApp.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
59
|
+
A16EB23022A9E9E10008F53F /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
|
60
|
+
A16EB23222A9E9E10008F53F /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = "<group>"; };
|
|
61
|
+
A16EB23922A9E9E20008F53F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
|
62
|
+
A16EB23C22A9E9E20008F53F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
|
63
|
+
A16EB23E22A9E9E20008F53F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
64
|
+
A16EB24422A9EA000008F53F /* NFCPassportReader.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = NFCPassportReader.entitlements; sourceTree = "<group>"; };
|
|
65
|
+
A17134BD22C8EF7100C457C3 /* MainView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainView.swift; sourceTree = "<group>"; };
|
|
66
|
+
A17134BF22C8F0A600C457C3 /* PassportUtils.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PassportUtils.swift; sourceTree = "<group>"; };
|
|
67
|
+
A17375F425F78B0C005995DA /* PACETests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PACETests.swift; sourceTree = "<group>"; };
|
|
68
|
+
A1769DF625D3E318006002D1 /* SettingsStore.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsStore.swift; sourceTree = "<group>"; };
|
|
69
|
+
A1816E9B22C9059F00F546A0 /* PassportView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PassportView.swift; sourceTree = "<group>"; };
|
|
70
|
+
A18248C12369D17300581384 /* DetailsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DetailsView.swift; sourceTree = "<group>"; };
|
|
71
|
+
A182DE6025DD6F1300341204 /* StoredPassportView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StoredPassportView.swift; sourceTree = "<group>"; };
|
|
72
|
+
A182DE6225DD730D00341204 /* FileManagerExt.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileManagerExt.swift; sourceTree = "<group>"; };
|
|
73
|
+
A182DE6725DD7EA600341204 /* MRZScannerViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MRZScannerViewController.swift; sourceTree = "<group>"; };
|
|
74
|
+
A1A13B9425B8A29E0026074C /* UIApplicationExt.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIApplicationExt.swift; sourceTree = "<group>"; };
|
|
75
|
+
A1A4C0F625B5E4D70070908B /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
|
76
|
+
A1C234C125DD19DE003FFD79 /* PassportSummaryView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PassportSummaryView.swift; sourceTree = "<group>"; };
|
|
77
|
+
A1CE83AB22C91D1300E3EACF /* StringExt.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StringExt.swift; sourceTree = "<group>"; };
|
|
78
|
+
A1DD3F3E22C535F00067255C /* masterList.pem */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = masterList.pem; sourceTree = "<group>"; };
|
|
79
|
+
A1EBC50D2370B88D004DD19E /* NFCPassportReaderAppTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NFCPassportReaderAppTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
80
|
+
A1EBC5112370B88D004DD19E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
81
|
+
A1EBC5212370BAB2004DD19E /* DataGroupParsingTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DataGroupParsingTests.swift; sourceTree = "<group>"; };
|
|
82
|
+
A1EBC5222370BAB2004DD19E /* NFCPassportReaderTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NFCPassportReaderTests.swift; sourceTree = "<group>"; };
|
|
83
|
+
A1FDC52D25D3F15D00D22FF4 /* SettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsView.swift; sourceTree = "<group>"; };
|
|
84
|
+
A1FDC53125D3F19E00D22FF4 /* ViewModifiers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewModifiers.swift; sourceTree = "<group>"; };
|
|
85
|
+
A1FDC53325D3F1DE00D22FF4 /* CheckBoxView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CheckBoxView.swift; sourceTree = "<group>"; };
|
|
86
|
+
A1FDC53525D43AB400D22FF4 /* MRZEntryView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MRZEntryView.swift; sourceTree = "<group>"; };
|
|
87
|
+
A7BD003B33886ED0F3F03325 /* Pods_NFCPassportReaderApp.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_NFCPassportReaderApp.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
88
|
+
B239DD4BD3AA9ECF4F595D22 /* Pods-NFCPassportReaderApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NFCPassportReaderApp.release.xcconfig"; path = "Target Support Files/Pods-NFCPassportReaderApp/Pods-NFCPassportReaderApp.release.xcconfig"; sourceTree = "<group>"; };
|
|
89
|
+
DA39DA603B1A7EBD8FC38112 /* Pods_NFCPassportReaderAppTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_NFCPassportReaderAppTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
90
|
+
/* End PBXFileReference section */
|
|
91
|
+
|
|
92
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
93
|
+
A16EB22A22A9E9E10008F53F /* Frameworks */ = {
|
|
94
|
+
isa = PBXFrameworksBuildPhase;
|
|
95
|
+
buildActionMask = 2147483647;
|
|
96
|
+
files = (
|
|
97
|
+
A1A4C0F725B5E4D70070908B /* Foundation.framework in Frameworks */,
|
|
98
|
+
28BAEE044BE68A5986B97866 /* Pods_NFCPassportReaderApp.framework in Frameworks */,
|
|
99
|
+
);
|
|
100
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
101
|
+
};
|
|
102
|
+
A1EBC50A2370B88D004DD19E /* Frameworks */ = {
|
|
103
|
+
isa = PBXFrameworksBuildPhase;
|
|
104
|
+
buildActionMask = 2147483647;
|
|
105
|
+
files = (
|
|
106
|
+
8C4EEF9CDD6DAFEF26F8909A /* Pods_NFCPassportReaderAppTests.framework in Frameworks */,
|
|
107
|
+
);
|
|
108
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
109
|
+
};
|
|
110
|
+
/* End PBXFrameworksBuildPhase section */
|
|
111
|
+
|
|
112
|
+
/* Begin PBXGroup section */
|
|
113
|
+
A1298C9B25D539CD00F5713E /* HelperViews */ = {
|
|
114
|
+
isa = PBXGroup;
|
|
115
|
+
children = (
|
|
116
|
+
A1FDC53325D3F1DE00D22FF4 /* CheckBoxView.swift */,
|
|
117
|
+
A1298C9E25D53A5C00F5713E /* ViewExt.swift */,
|
|
118
|
+
A1FDC53125D3F19E00D22FF4 /* ViewModifiers.swift */,
|
|
119
|
+
);
|
|
120
|
+
path = HelperViews;
|
|
121
|
+
sourceTree = "<group>";
|
|
122
|
+
};
|
|
123
|
+
A16EB22422A9E9E10008F53F = {
|
|
124
|
+
isa = PBXGroup;
|
|
125
|
+
children = (
|
|
126
|
+
A16EB22F22A9E9E10008F53F /* NFCPassportReaderApp */,
|
|
127
|
+
A1EBC50E2370B88D004DD19E /* NFCPassportReaderAppTests */,
|
|
128
|
+
A16EB22E22A9E9E10008F53F /* Products */,
|
|
129
|
+
EE354654AF07CDA5F9366735 /* Pods */,
|
|
130
|
+
A1A4C0E325B5D3370070908B /* Frameworks */,
|
|
131
|
+
);
|
|
132
|
+
sourceTree = "<group>";
|
|
133
|
+
};
|
|
134
|
+
A16EB22E22A9E9E10008F53F /* Products */ = {
|
|
135
|
+
isa = PBXGroup;
|
|
136
|
+
children = (
|
|
137
|
+
A16EB22D22A9E9E10008F53F /* NFCPassportReaderApp.app */,
|
|
138
|
+
A1EBC50D2370B88D004DD19E /* NFCPassportReaderAppTests.xctest */,
|
|
139
|
+
);
|
|
140
|
+
name = Products;
|
|
141
|
+
sourceTree = "<group>";
|
|
142
|
+
};
|
|
143
|
+
A16EB22F22A9E9E10008F53F /* NFCPassportReaderApp */ = {
|
|
144
|
+
isa = PBXGroup;
|
|
145
|
+
children = (
|
|
146
|
+
A16EB24422A9EA000008F53F /* NFCPassportReader.entitlements */,
|
|
147
|
+
A1CE83AF22C91DB600E3EACF /* Model */,
|
|
148
|
+
A182DE6425DD731900341204 /* Extensions */,
|
|
149
|
+
A1CE83B022C91DF100E3EACF /* Views */,
|
|
150
|
+
A16EB23022A9E9E10008F53F /* AppDelegate.swift */,
|
|
151
|
+
A16EB23222A9E9E10008F53F /* SceneDelegate.swift */,
|
|
152
|
+
A16EB23922A9E9E20008F53F /* Assets.xcassets */,
|
|
153
|
+
A16EB23B22A9E9E20008F53F /* LaunchScreen.storyboard */,
|
|
154
|
+
A16EB23E22A9E9E20008F53F /* Info.plist */,
|
|
155
|
+
A1DD3F3E22C535F00067255C /* masterList.pem */,
|
|
156
|
+
A1095E982588FBB100D2A46A /* CHANGELOG */,
|
|
157
|
+
A1095E9B2589032D00D2A46A /* readme.md */,
|
|
158
|
+
);
|
|
159
|
+
path = NFCPassportReaderApp;
|
|
160
|
+
sourceTree = "<group>";
|
|
161
|
+
};
|
|
162
|
+
A182DE6425DD731900341204 /* Extensions */ = {
|
|
163
|
+
isa = PBXGroup;
|
|
164
|
+
children = (
|
|
165
|
+
A1CE83AB22C91D1300E3EACF /* StringExt.swift */,
|
|
166
|
+
A182DE6225DD730D00341204 /* FileManagerExt.swift */,
|
|
167
|
+
A1A13B9425B8A29E0026074C /* UIApplicationExt.swift */,
|
|
168
|
+
);
|
|
169
|
+
path = Extensions;
|
|
170
|
+
sourceTree = "<group>";
|
|
171
|
+
};
|
|
172
|
+
A1A4C0E325B5D3370070908B /* Frameworks */ = {
|
|
173
|
+
isa = PBXGroup;
|
|
174
|
+
children = (
|
|
175
|
+
A1A4C0F625B5E4D70070908B /* Foundation.framework */,
|
|
176
|
+
A7BD003B33886ED0F3F03325 /* Pods_NFCPassportReaderApp.framework */,
|
|
177
|
+
DA39DA603B1A7EBD8FC38112 /* Pods_NFCPassportReaderAppTests.framework */,
|
|
178
|
+
);
|
|
179
|
+
name = Frameworks;
|
|
180
|
+
sourceTree = "<group>";
|
|
181
|
+
};
|
|
182
|
+
A1CE83AF22C91DB600E3EACF /* Model */ = {
|
|
183
|
+
isa = PBXGroup;
|
|
184
|
+
children = (
|
|
185
|
+
A17134BF22C8F0A600C457C3 /* PassportUtils.swift */,
|
|
186
|
+
A1769DF625D3E318006002D1 /* SettingsStore.swift */,
|
|
187
|
+
);
|
|
188
|
+
path = Model;
|
|
189
|
+
sourceTree = "<group>";
|
|
190
|
+
};
|
|
191
|
+
A1CE83B022C91DF100E3EACF /* Views */ = {
|
|
192
|
+
isa = PBXGroup;
|
|
193
|
+
children = (
|
|
194
|
+
A1298C9B25D539CD00F5713E /* HelperViews */,
|
|
195
|
+
A17134BD22C8EF7100C457C3 /* MainView.swift */,
|
|
196
|
+
A1FDC53525D43AB400D22FF4 /* MRZEntryView.swift */,
|
|
197
|
+
A1FDC52D25D3F15D00D22FF4 /* SettingsView.swift */,
|
|
198
|
+
A1816E9B22C9059F00F546A0 /* PassportView.swift */,
|
|
199
|
+
A1C234C125DD19DE003FFD79 /* PassportSummaryView.swift */,
|
|
200
|
+
A18248C12369D17300581384 /* DetailsView.swift */,
|
|
201
|
+
A182DE6025DD6F1300341204 /* StoredPassportView.swift */,
|
|
202
|
+
A1614B9125D5856600191749 /* ExportPassportView.swift */,
|
|
203
|
+
A182DE6725DD7EA600341204 /* MRZScannerViewController.swift */,
|
|
204
|
+
);
|
|
205
|
+
path = Views;
|
|
206
|
+
sourceTree = "<group>";
|
|
207
|
+
};
|
|
208
|
+
A1EBC50E2370B88D004DD19E /* NFCPassportReaderAppTests */ = {
|
|
209
|
+
isa = PBXGroup;
|
|
210
|
+
children = (
|
|
211
|
+
A1EBC5212370BAB2004DD19E /* DataGroupParsingTests.swift */,
|
|
212
|
+
A1EBC5222370BAB2004DD19E /* NFCPassportReaderTests.swift */,
|
|
213
|
+
A1EBC5112370B88D004DD19E /* Info.plist */,
|
|
214
|
+
A17375F425F78B0C005995DA /* PACETests.swift */,
|
|
215
|
+
);
|
|
216
|
+
path = NFCPassportReaderAppTests;
|
|
217
|
+
sourceTree = "<group>";
|
|
218
|
+
};
|
|
219
|
+
EE354654AF07CDA5F9366735 /* Pods */ = {
|
|
220
|
+
isa = PBXGroup;
|
|
221
|
+
children = (
|
|
222
|
+
574315DEF74ED0B9CC6A8DC7 /* Pods-NFCPassportReaderApp.debug.xcconfig */,
|
|
223
|
+
B239DD4BD3AA9ECF4F595D22 /* Pods-NFCPassportReaderApp.release.xcconfig */,
|
|
224
|
+
3B684038F7C81C32BA310074 /* Pods-NFCPassportReaderAppTests.debug.xcconfig */,
|
|
225
|
+
29684A8780D423313153D8B6 /* Pods-NFCPassportReaderAppTests.release.xcconfig */,
|
|
226
|
+
);
|
|
227
|
+
path = Pods;
|
|
228
|
+
sourceTree = "<group>";
|
|
229
|
+
};
|
|
230
|
+
/* End PBXGroup section */
|
|
231
|
+
|
|
232
|
+
/* Begin PBXNativeTarget section */
|
|
233
|
+
A16EB22C22A9E9E10008F53F /* NFCPassportReaderApp */ = {
|
|
234
|
+
isa = PBXNativeTarget;
|
|
235
|
+
buildConfigurationList = A16EB24122A9E9E20008F53F /* Build configuration list for PBXNativeTarget "NFCPassportReaderApp" */;
|
|
236
|
+
buildPhases = (
|
|
237
|
+
441F58E6FEE1B28C771C6B72 /* [CP] Check Pods Manifest.lock */,
|
|
238
|
+
A16EB22922A9E9E10008F53F /* Sources */,
|
|
239
|
+
A16EB22A22A9E9E10008F53F /* Frameworks */,
|
|
240
|
+
A16EB22B22A9E9E10008F53F /* Resources */,
|
|
241
|
+
4E62328E60F074D699104549 /* [CP] Embed Pods Frameworks */,
|
|
242
|
+
);
|
|
243
|
+
buildRules = (
|
|
244
|
+
);
|
|
245
|
+
dependencies = (
|
|
246
|
+
);
|
|
247
|
+
name = NFCPassportReaderApp;
|
|
248
|
+
productName = NFCTest;
|
|
249
|
+
productReference = A16EB22D22A9E9E10008F53F /* NFCPassportReaderApp.app */;
|
|
250
|
+
productType = "com.apple.product-type.application";
|
|
251
|
+
};
|
|
252
|
+
A1EBC50C2370B88D004DD19E /* NFCPassportReaderAppTests */ = {
|
|
253
|
+
isa = PBXNativeTarget;
|
|
254
|
+
buildConfigurationList = A1EBC5162370B88D004DD19E /* Build configuration list for PBXNativeTarget "NFCPassportReaderAppTests" */;
|
|
255
|
+
buildPhases = (
|
|
256
|
+
11A5FABC15C673E24DA3F0C2 /* [CP] Check Pods Manifest.lock */,
|
|
257
|
+
A1EBC5092370B88D004DD19E /* Sources */,
|
|
258
|
+
A1EBC50A2370B88D004DD19E /* Frameworks */,
|
|
259
|
+
A1EBC50B2370B88D004DD19E /* Resources */,
|
|
260
|
+
);
|
|
261
|
+
buildRules = (
|
|
262
|
+
);
|
|
263
|
+
dependencies = (
|
|
264
|
+
A1EBC5132370B88D004DD19E /* PBXTargetDependency */,
|
|
265
|
+
);
|
|
266
|
+
name = NFCPassportReaderAppTests;
|
|
267
|
+
productName = NFCPassportReaderAppTests;
|
|
268
|
+
productReference = A1EBC50D2370B88D004DD19E /* NFCPassportReaderAppTests.xctest */;
|
|
269
|
+
productType = "com.apple.product-type.bundle.unit-test";
|
|
270
|
+
};
|
|
271
|
+
/* End PBXNativeTarget section */
|
|
272
|
+
|
|
273
|
+
/* Begin PBXProject section */
|
|
274
|
+
A16EB22522A9E9E10008F53F /* Project object */ = {
|
|
275
|
+
isa = PBXProject;
|
|
276
|
+
attributes = {
|
|
277
|
+
LastSwiftUpdateCheck = 1120;
|
|
278
|
+
LastUpgradeCheck = 1300;
|
|
279
|
+
ORGANIZATIONNAME = "Andy Qua";
|
|
280
|
+
TargetAttributes = {
|
|
281
|
+
A16EB22C22A9E9E10008F53F = {
|
|
282
|
+
CreatedOnToolsVersion = 11.0;
|
|
283
|
+
LastSwiftMigration = 1100;
|
|
284
|
+
};
|
|
285
|
+
A1EBC50C2370B88D004DD19E = {
|
|
286
|
+
CreatedOnToolsVersion = 11.2;
|
|
287
|
+
TestTargetID = A16EB22C22A9E9E10008F53F;
|
|
288
|
+
};
|
|
289
|
+
};
|
|
290
|
+
};
|
|
291
|
+
buildConfigurationList = A16EB22822A9E9E10008F53F /* Build configuration list for PBXProject "NFCPassportReaderApp" */;
|
|
292
|
+
compatibilityVersion = "Xcode 9.3";
|
|
293
|
+
developmentRegion = en;
|
|
294
|
+
hasScannedForEncodings = 0;
|
|
295
|
+
knownRegions = (
|
|
296
|
+
en,
|
|
297
|
+
Base,
|
|
298
|
+
);
|
|
299
|
+
mainGroup = A16EB22422A9E9E10008F53F;
|
|
300
|
+
productRefGroup = A16EB22E22A9E9E10008F53F /* Products */;
|
|
301
|
+
projectDirPath = "";
|
|
302
|
+
projectRoot = "";
|
|
303
|
+
targets = (
|
|
304
|
+
A16EB22C22A9E9E10008F53F /* NFCPassportReaderApp */,
|
|
305
|
+
A1EBC50C2370B88D004DD19E /* NFCPassportReaderAppTests */,
|
|
306
|
+
);
|
|
307
|
+
};
|
|
308
|
+
/* End PBXProject section */
|
|
309
|
+
|
|
310
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
311
|
+
A16EB22B22A9E9E10008F53F /* Resources */ = {
|
|
312
|
+
isa = PBXResourcesBuildPhase;
|
|
313
|
+
buildActionMask = 2147483647;
|
|
314
|
+
files = (
|
|
315
|
+
A16EB23D22A9E9E20008F53F /* LaunchScreen.storyboard in Resources */,
|
|
316
|
+
A1DD3F3F22C535F10067255C /* masterList.pem in Resources */,
|
|
317
|
+
A16EB23A22A9E9E20008F53F /* Assets.xcassets in Resources */,
|
|
318
|
+
);
|
|
319
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
320
|
+
};
|
|
321
|
+
A1EBC50B2370B88D004DD19E /* Resources */ = {
|
|
322
|
+
isa = PBXResourcesBuildPhase;
|
|
323
|
+
buildActionMask = 2147483647;
|
|
324
|
+
files = (
|
|
325
|
+
);
|
|
326
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
327
|
+
};
|
|
328
|
+
/* End PBXResourcesBuildPhase section */
|
|
329
|
+
|
|
330
|
+
/* Begin PBXShellScriptBuildPhase section */
|
|
331
|
+
11A5FABC15C673E24DA3F0C2 /* [CP] Check Pods Manifest.lock */ = {
|
|
332
|
+
isa = PBXShellScriptBuildPhase;
|
|
333
|
+
buildActionMask = 2147483647;
|
|
334
|
+
files = (
|
|
335
|
+
);
|
|
336
|
+
inputFileListPaths = (
|
|
337
|
+
);
|
|
338
|
+
inputPaths = (
|
|
339
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
340
|
+
"${PODS_ROOT}/Manifest.lock",
|
|
341
|
+
);
|
|
342
|
+
name = "[CP] Check Pods Manifest.lock";
|
|
343
|
+
outputFileListPaths = (
|
|
344
|
+
);
|
|
345
|
+
outputPaths = (
|
|
346
|
+
"$(DERIVED_FILE_DIR)/Pods-NFCPassportReaderAppTests-checkManifestLockResult.txt",
|
|
347
|
+
);
|
|
348
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
349
|
+
shellPath = /bin/sh;
|
|
350
|
+
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
|
351
|
+
showEnvVarsInLog = 0;
|
|
352
|
+
};
|
|
353
|
+
441F58E6FEE1B28C771C6B72 /* [CP] Check Pods Manifest.lock */ = {
|
|
354
|
+
isa = PBXShellScriptBuildPhase;
|
|
355
|
+
buildActionMask = 2147483647;
|
|
356
|
+
files = (
|
|
357
|
+
);
|
|
358
|
+
inputFileListPaths = (
|
|
359
|
+
);
|
|
360
|
+
inputPaths = (
|
|
361
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
362
|
+
"${PODS_ROOT}/Manifest.lock",
|
|
363
|
+
);
|
|
364
|
+
name = "[CP] Check Pods Manifest.lock";
|
|
365
|
+
outputFileListPaths = (
|
|
366
|
+
);
|
|
367
|
+
outputPaths = (
|
|
368
|
+
"$(DERIVED_FILE_DIR)/Pods-NFCPassportReaderApp-checkManifestLockResult.txt",
|
|
369
|
+
);
|
|
370
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
371
|
+
shellPath = /bin/sh;
|
|
372
|
+
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
|
373
|
+
showEnvVarsInLog = 0;
|
|
374
|
+
};
|
|
375
|
+
4E62328E60F074D699104549 /* [CP] Embed Pods Frameworks */ = {
|
|
376
|
+
isa = PBXShellScriptBuildPhase;
|
|
377
|
+
buildActionMask = 2147483647;
|
|
378
|
+
files = (
|
|
379
|
+
);
|
|
380
|
+
inputFileListPaths = (
|
|
381
|
+
"${PODS_ROOT}/Target Support Files/Pods-NFCPassportReaderApp/Pods-NFCPassportReaderApp-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
|
382
|
+
);
|
|
383
|
+
name = "[CP] Embed Pods Frameworks";
|
|
384
|
+
outputFileListPaths = (
|
|
385
|
+
"${PODS_ROOT}/Target Support Files/Pods-NFCPassportReaderApp/Pods-NFCPassportReaderApp-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
|
386
|
+
);
|
|
387
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
388
|
+
shellPath = /bin/sh;
|
|
389
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NFCPassportReaderApp/Pods-NFCPassportReaderApp-frameworks.sh\"\n";
|
|
390
|
+
showEnvVarsInLog = 0;
|
|
391
|
+
};
|
|
392
|
+
/* End PBXShellScriptBuildPhase section */
|
|
393
|
+
|
|
394
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
395
|
+
A16EB22922A9E9E10008F53F /* Sources */ = {
|
|
396
|
+
isa = PBXSourcesBuildPhase;
|
|
397
|
+
buildActionMask = 2147483647;
|
|
398
|
+
files = (
|
|
399
|
+
A182DE6825DD7EA600341204 /* MRZScannerViewController.swift in Sources */,
|
|
400
|
+
A1CE83AC22C91D1300E3EACF /* StringExt.swift in Sources */,
|
|
401
|
+
A1FDC53625D43AB400D22FF4 /* MRZEntryView.swift in Sources */,
|
|
402
|
+
A17134BE22C8EF7200C457C3 /* MainView.swift in Sources */,
|
|
403
|
+
A16EB23122A9E9E10008F53F /* AppDelegate.swift in Sources */,
|
|
404
|
+
A1816E9C22C9059F00F546A0 /* PassportView.swift in Sources */,
|
|
405
|
+
A1769DF725D3E318006002D1 /* SettingsStore.swift in Sources */,
|
|
406
|
+
A1298C9F25D53A5C00F5713E /* ViewExt.swift in Sources */,
|
|
407
|
+
A182DE6325DD730D00341204 /* FileManagerExt.swift in Sources */,
|
|
408
|
+
A1FDC52E25D3F15D00D22FF4 /* SettingsView.swift in Sources */,
|
|
409
|
+
A182DE6125DD6F1300341204 /* StoredPassportView.swift in Sources */,
|
|
410
|
+
A1FDC53225D3F19E00D22FF4 /* ViewModifiers.swift in Sources */,
|
|
411
|
+
A1C234C225DD19DE003FFD79 /* PassportSummaryView.swift in Sources */,
|
|
412
|
+
A1614B9225D5856600191749 /* ExportPassportView.swift in Sources */,
|
|
413
|
+
A18248C22369D17300581384 /* DetailsView.swift in Sources */,
|
|
414
|
+
A1FDC53425D3F1DE00D22FF4 /* CheckBoxView.swift in Sources */,
|
|
415
|
+
A1A13B9525B8A29E0026074C /* UIApplicationExt.swift in Sources */,
|
|
416
|
+
A16EB23322A9E9E10008F53F /* SceneDelegate.swift in Sources */,
|
|
417
|
+
A17134C022C8F0A600C457C3 /* PassportUtils.swift in Sources */,
|
|
418
|
+
);
|
|
419
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
420
|
+
};
|
|
421
|
+
A1EBC5092370B88D004DD19E /* Sources */ = {
|
|
422
|
+
isa = PBXSourcesBuildPhase;
|
|
423
|
+
buildActionMask = 2147483647;
|
|
424
|
+
files = (
|
|
425
|
+
A1EBC5252370BAB2004DD19E /* NFCPassportReaderTests.swift in Sources */,
|
|
426
|
+
A17375F525F78B0D005995DA /* PACETests.swift in Sources */,
|
|
427
|
+
A1EBC5242370BAB2004DD19E /* DataGroupParsingTests.swift in Sources */,
|
|
428
|
+
);
|
|
429
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
430
|
+
};
|
|
431
|
+
/* End PBXSourcesBuildPhase section */
|
|
432
|
+
|
|
433
|
+
/* Begin PBXTargetDependency section */
|
|
434
|
+
A1EBC5132370B88D004DD19E /* PBXTargetDependency */ = {
|
|
435
|
+
isa = PBXTargetDependency;
|
|
436
|
+
target = A16EB22C22A9E9E10008F53F /* NFCPassportReaderApp */;
|
|
437
|
+
targetProxy = A1EBC5122370B88D004DD19E /* PBXContainerItemProxy */;
|
|
438
|
+
};
|
|
439
|
+
/* End PBXTargetDependency section */
|
|
440
|
+
|
|
441
|
+
/* Begin PBXVariantGroup section */
|
|
442
|
+
A16EB23B22A9E9E20008F53F /* LaunchScreen.storyboard */ = {
|
|
443
|
+
isa = PBXVariantGroup;
|
|
444
|
+
children = (
|
|
445
|
+
A16EB23C22A9E9E20008F53F /* Base */,
|
|
446
|
+
);
|
|
447
|
+
name = LaunchScreen.storyboard;
|
|
448
|
+
sourceTree = "<group>";
|
|
449
|
+
};
|
|
450
|
+
/* End PBXVariantGroup section */
|
|
451
|
+
|
|
452
|
+
/* Begin XCBuildConfiguration section */
|
|
453
|
+
A16EB23F22A9E9E20008F53F /* Debug */ = {
|
|
454
|
+
isa = XCBuildConfiguration;
|
|
455
|
+
buildSettings = {
|
|
456
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
457
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
458
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
459
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
460
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
461
|
+
CLANG_ENABLE_MODULES = YES;
|
|
462
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
463
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
464
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
465
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
466
|
+
CLANG_WARN_COMMA = YES;
|
|
467
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
468
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
469
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
470
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
471
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
472
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
473
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
474
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
475
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
476
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
477
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
478
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
479
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
480
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
481
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
482
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
483
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
484
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
485
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
486
|
+
COPY_PHASE_STRIP = NO;
|
|
487
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
488
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
489
|
+
ENABLE_TESTABILITY = YES;
|
|
490
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
491
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
492
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
493
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
494
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
495
|
+
"DEBUG=1",
|
|
496
|
+
"$(inherited)",
|
|
497
|
+
);
|
|
498
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
499
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
500
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
501
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
502
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
503
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
504
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
505
|
+
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
|
506
|
+
MTL_FAST_MATH = YES;
|
|
507
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
508
|
+
SDKROOT = iphoneos;
|
|
509
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
|
510
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
511
|
+
};
|
|
512
|
+
name = Debug;
|
|
513
|
+
};
|
|
514
|
+
A16EB24022A9E9E20008F53F /* Release */ = {
|
|
515
|
+
isa = XCBuildConfiguration;
|
|
516
|
+
buildSettings = {
|
|
517
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
518
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
519
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
520
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
521
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
522
|
+
CLANG_ENABLE_MODULES = YES;
|
|
523
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
524
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
525
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
526
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
527
|
+
CLANG_WARN_COMMA = YES;
|
|
528
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
529
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
530
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
531
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
532
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
533
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
534
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
535
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
536
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
537
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
538
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
539
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
540
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
541
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
542
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
543
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
544
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
545
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
546
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
547
|
+
COPY_PHASE_STRIP = NO;
|
|
548
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
549
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
550
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
551
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
552
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
553
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
554
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
555
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
556
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
557
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
558
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
559
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
560
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
561
|
+
MTL_FAST_MATH = YES;
|
|
562
|
+
SDKROOT = iphoneos;
|
|
563
|
+
SWIFT_COMPILATION_MODE = wholemodule;
|
|
564
|
+
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
|
565
|
+
VALIDATE_PRODUCT = YES;
|
|
566
|
+
};
|
|
567
|
+
name = Release;
|
|
568
|
+
};
|
|
569
|
+
A16EB24222A9E9E20008F53F /* Debug */ = {
|
|
570
|
+
isa = XCBuildConfiguration;
|
|
571
|
+
baseConfigurationReference = 574315DEF74ED0B9CC6A8DC7 /* Pods-NFCPassportReaderApp.debug.xcconfig */;
|
|
572
|
+
buildSettings = {
|
|
573
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
574
|
+
CLANG_ENABLE_MODULES = YES;
|
|
575
|
+
CODE_SIGN_ENTITLEMENTS = NFCPassportReaderApp/NFCPassportReader.entitlements;
|
|
576
|
+
CODE_SIGN_STYLE = Automatic;
|
|
577
|
+
CURRENT_PROJECT_VERSION = 4.1;
|
|
578
|
+
DEVELOPMENT_TEAM = BV8DN58CD3;
|
|
579
|
+
INFOPLIST_FILE = NFCPassportReaderApp/Info.plist;
|
|
580
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
|
|
581
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
582
|
+
"$(inherited)",
|
|
583
|
+
"@executable_path/Frameworks",
|
|
584
|
+
);
|
|
585
|
+
MARKETING_VERSION = 1.1;
|
|
586
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.iag.nfcpassportreader;
|
|
587
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
588
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
589
|
+
SWIFT_VERSION = 5.0;
|
|
590
|
+
TARGETED_DEVICE_FAMILY = 1;
|
|
591
|
+
};
|
|
592
|
+
name = Debug;
|
|
593
|
+
};
|
|
594
|
+
A16EB24322A9E9E20008F53F /* Release */ = {
|
|
595
|
+
isa = XCBuildConfiguration;
|
|
596
|
+
baseConfigurationReference = B239DD4BD3AA9ECF4F595D22 /* Pods-NFCPassportReaderApp.release.xcconfig */;
|
|
597
|
+
buildSettings = {
|
|
598
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
599
|
+
CLANG_ENABLE_MODULES = YES;
|
|
600
|
+
CODE_SIGN_ENTITLEMENTS = NFCPassportReaderApp/NFCPassportReader.entitlements;
|
|
601
|
+
CODE_SIGN_STYLE = Automatic;
|
|
602
|
+
CURRENT_PROJECT_VERSION = 4.1;
|
|
603
|
+
DEVELOPMENT_TEAM = BV8DN58CD3;
|
|
604
|
+
INFOPLIST_FILE = NFCPassportReaderApp/Info.plist;
|
|
605
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
|
|
606
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
607
|
+
"$(inherited)",
|
|
608
|
+
"@executable_path/Frameworks",
|
|
609
|
+
);
|
|
610
|
+
MARKETING_VERSION = 1.1;
|
|
611
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.iag.nfcpassportreader;
|
|
612
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
613
|
+
SWIFT_VERSION = 5.0;
|
|
614
|
+
TARGETED_DEVICE_FAMILY = 1;
|
|
615
|
+
};
|
|
616
|
+
name = Release;
|
|
617
|
+
};
|
|
618
|
+
A1EBC5142370B88D004DD19E /* Debug */ = {
|
|
619
|
+
isa = XCBuildConfiguration;
|
|
620
|
+
baseConfigurationReference = 3B684038F7C81C32BA310074 /* Pods-NFCPassportReaderAppTests.debug.xcconfig */;
|
|
621
|
+
buildSettings = {
|
|
622
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
623
|
+
CODE_SIGN_STYLE = Automatic;
|
|
624
|
+
DEVELOPMENT_TEAM = A4ZM73UFF5;
|
|
625
|
+
INFOPLIST_FILE = NFCPassportReaderAppTests/Info.plist;
|
|
626
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.2;
|
|
627
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
628
|
+
"$(inherited)",
|
|
629
|
+
"@executable_path/Frameworks",
|
|
630
|
+
"@loader_path/Frameworks",
|
|
631
|
+
);
|
|
632
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.andyqua.NFCPassportReaderAppTests;
|
|
633
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
634
|
+
SWIFT_VERSION = 5.0;
|
|
635
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
636
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/NFCPassportReaderApp.app/NFCPassportReaderApp";
|
|
637
|
+
};
|
|
638
|
+
name = Debug;
|
|
639
|
+
};
|
|
640
|
+
A1EBC5152370B88D004DD19E /* Release */ = {
|
|
641
|
+
isa = XCBuildConfiguration;
|
|
642
|
+
baseConfigurationReference = 29684A8780D423313153D8B6 /* Pods-NFCPassportReaderAppTests.release.xcconfig */;
|
|
643
|
+
buildSettings = {
|
|
644
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
645
|
+
CODE_SIGN_STYLE = Automatic;
|
|
646
|
+
DEVELOPMENT_TEAM = A4ZM73UFF5;
|
|
647
|
+
INFOPLIST_FILE = NFCPassportReaderAppTests/Info.plist;
|
|
648
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.2;
|
|
649
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
650
|
+
"$(inherited)",
|
|
651
|
+
"@executable_path/Frameworks",
|
|
652
|
+
"@loader_path/Frameworks",
|
|
653
|
+
);
|
|
654
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.andyqua.NFCPassportReaderAppTests;
|
|
655
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
656
|
+
SWIFT_VERSION = 5.0;
|
|
657
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
658
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/NFCPassportReaderApp.app/NFCPassportReaderApp";
|
|
659
|
+
};
|
|
660
|
+
name = Release;
|
|
661
|
+
};
|
|
662
|
+
/* End XCBuildConfiguration section */
|
|
663
|
+
|
|
664
|
+
/* Begin XCConfigurationList section */
|
|
665
|
+
A16EB22822A9E9E10008F53F /* Build configuration list for PBXProject "NFCPassportReaderApp" */ = {
|
|
666
|
+
isa = XCConfigurationList;
|
|
667
|
+
buildConfigurations = (
|
|
668
|
+
A16EB23F22A9E9E20008F53F /* Debug */,
|
|
669
|
+
A16EB24022A9E9E20008F53F /* Release */,
|
|
670
|
+
);
|
|
671
|
+
defaultConfigurationIsVisible = 0;
|
|
672
|
+
defaultConfigurationName = Release;
|
|
673
|
+
};
|
|
674
|
+
A16EB24122A9E9E20008F53F /* Build configuration list for PBXNativeTarget "NFCPassportReaderApp" */ = {
|
|
675
|
+
isa = XCConfigurationList;
|
|
676
|
+
buildConfigurations = (
|
|
677
|
+
A16EB24222A9E9E20008F53F /* Debug */,
|
|
678
|
+
A16EB24322A9E9E20008F53F /* Release */,
|
|
679
|
+
);
|
|
680
|
+
defaultConfigurationIsVisible = 0;
|
|
681
|
+
defaultConfigurationName = Release;
|
|
682
|
+
};
|
|
683
|
+
A1EBC5162370B88D004DD19E /* Build configuration list for PBXNativeTarget "NFCPassportReaderAppTests" */ = {
|
|
684
|
+
isa = XCConfigurationList;
|
|
685
|
+
buildConfigurations = (
|
|
686
|
+
A1EBC5142370B88D004DD19E /* Debug */,
|
|
687
|
+
A1EBC5152370B88D004DD19E /* Release */,
|
|
688
|
+
);
|
|
689
|
+
defaultConfigurationIsVisible = 0;
|
|
690
|
+
defaultConfigurationName = Release;
|
|
691
|
+
};
|
|
692
|
+
/* End XCConfigurationList section */
|
|
693
|
+
};
|
|
694
|
+
rootObject = A16EB22522A9E9E10008F53F /* Project object */;
|
|
695
|
+
}
|