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