@regulaforensics/document-reader 8.2.186-beta

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 (439) hide show
  1. package/README.md +18 -0
  2. package/RNDocumentReader.podspec +21 -0
  3. package/android/CVDDocumentReader.kt +74 -0
  4. package/android/build.gradle +36 -0
  5. package/android/cordova.gradle +12 -0
  6. package/android/src/main/java/com/regula/plugin/documentreader/BluetoothUtil.kt +160 -0
  7. package/android/src/main/java/com/regula/plugin/documentreader/Config.kt +826 -0
  8. package/android/src/main/java/com/regula/plugin/documentreader/JSONConstructor.kt +1795 -0
  9. package/android/src/main/java/com/regula/plugin/documentreader/Main.kt +573 -0
  10. package/android/src/main/java/com/regula/plugin/documentreader/RNDocumentReaderModule.kt +100 -0
  11. package/android/src/main/java/com/regula/plugin/documentreader/Utils.kt +181 -0
  12. package/examples/capacitor/README.md +12 -0
  13. package/examples/capacitor/android/app/build.gradle +50 -0
  14. package/examples/capacitor/android/app/capacitor.build.gradle +22 -0
  15. package/examples/capacitor/android/app/proguard-rules.pro +21 -0
  16. package/examples/capacitor/android/app/src/main/AndroidManifest.xml +27 -0
  17. package/examples/capacitor/android/app/src/main/assets/Regula/.gitkeep +0 -0
  18. package/examples/capacitor/android/app/src/main/java/com/regula/dr/fullauthrfid/MainActivity.java +5 -0
  19. package/examples/capacitor/android/app/src/main/res/drawable/ic_launcher.png +0 -0
  20. package/examples/capacitor/android/app/src/main/res/drawable/splash.png +0 -0
  21. package/examples/capacitor/android/app/src/main/res/layout/activity_main.xml +12 -0
  22. package/examples/capacitor/android/app/src/main/res/values/strings.xml +7 -0
  23. package/examples/capacitor/android/app/src/main/res/values/styles.xml +22 -0
  24. package/examples/capacitor/android/build.gradle +30 -0
  25. package/examples/capacitor/android/capacitor.settings.gradle +15 -0
  26. package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  27. package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  28. package/examples/capacitor/android/gradle.properties +22 -0
  29. package/examples/capacitor/android/gradlew +252 -0
  30. package/examples/capacitor/android/gradlew.bat +94 -0
  31. package/examples/capacitor/android/settings.gradle +5 -0
  32. package/examples/capacitor/android/variables.gradle +16 -0
  33. package/examples/capacitor/index.html +10 -0
  34. package/examples/capacitor/ionic.config.json +7 -0
  35. package/examples/capacitor/ios/App/App/App.entitlements +5 -0
  36. package/examples/capacitor/ios/App/App/AppDelegate.swift +49 -0
  37. package/examples/capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png +0 -0
  38. package/examples/capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json +14 -0
  39. package/examples/capacitor/ios/App/App/Assets.xcassets/Contents.json +6 -0
  40. package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json +23 -0
  41. package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png +0 -0
  42. package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png +0 -0
  43. package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png +0 -0
  44. package/examples/capacitor/ios/App/App/Base.lproj/LaunchScreen.storyboard +32 -0
  45. package/examples/capacitor/ios/App/App/Base.lproj/Main.storyboard +19 -0
  46. package/examples/capacitor/ios/App/App/Info.plist +53 -0
  47. package/examples/capacitor/ios/App/App.xcodeproj/project.pbxproj +414 -0
  48. package/examples/capacitor/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  49. package/examples/capacitor/ios/App/App.xcworkspace/contents.xcworkspacedata +10 -0
  50. package/examples/capacitor/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  51. package/examples/capacitor/ios/App/Podfile +26 -0
  52. package/examples/capacitor/ios/App/Podfile.lock +56 -0
  53. package/examples/capacitor/package-lock.json +3467 -0
  54. package/examples/capacitor/package.json +29 -0
  55. package/examples/capacitor/public/assets/.gitkeep +0 -0
  56. package/examples/capacitor/public/images/document.png +0 -0
  57. package/examples/capacitor/public/images/portrait.png +0 -0
  58. package/examples/capacitor/scripts/android.sh +9 -0
  59. package/examples/capacitor/scripts/ios.sh +8 -0
  60. package/examples/capacitor/scripts/setup.sh +6 -0
  61. package/examples/capacitor/src/extra/bt_device.tsx +32 -0
  62. package/examples/capacitor/src/extra/custom_rfid.tsx +74 -0
  63. package/examples/capacitor/src/main.css +131 -0
  64. package/examples/capacitor/src/main.html +41 -0
  65. package/examples/capacitor/src/main.tsx +175 -0
  66. package/examples/capacitor/tsconfig.json +5 -0
  67. package/examples/capacitor/vite.config.ts +17 -0
  68. package/examples/cordova/.vscode/launch.json +28 -0
  69. package/examples/cordova/.vscode/typings/cordova/cordova.d.ts +80 -0
  70. package/examples/cordova/README.md +12 -0
  71. package/examples/cordova/config.xml +29 -0
  72. package/examples/cordova/package-lock.json +1314 -0
  73. package/examples/cordova/package.json +32 -0
  74. package/examples/cordova/scripts/android.sh +8 -0
  75. package/examples/cordova/scripts/ios.sh +8 -0
  76. package/examples/cordova/scripts/setup.sh +8 -0
  77. package/examples/cordova/www/images/document.png +0 -0
  78. package/examples/cordova/www/images/logo.png +0 -0
  79. package/examples/cordova/www/images/portrait.png +0 -0
  80. package/examples/cordova/www/index.html +21 -0
  81. package/examples/cordova/www/src/main.css +130 -0
  82. package/examples/cordova/www/src/main.html +63 -0
  83. package/examples/cordova/www/src/main.js +50 -0
  84. package/examples/ionic/README.md +12 -0
  85. package/examples/ionic/angular.json +39 -0
  86. package/examples/ionic/config.xml +28 -0
  87. package/examples/ionic/index.html +19 -0
  88. package/examples/ionic/index.ts +17 -0
  89. package/examples/ionic/ionic.config.json +7 -0
  90. package/examples/ionic/package-lock.json +16559 -0
  91. package/examples/ionic/package.json +47 -0
  92. package/examples/ionic/scripts/android.sh +8 -0
  93. package/examples/ionic/scripts/ios.sh +8 -0
  94. package/examples/ionic/scripts/setup.sh +8 -0
  95. package/examples/ionic/src/assets/.gitkeep +0 -0
  96. package/examples/ionic/src/images/document.png +0 -0
  97. package/examples/ionic/src/images/icon.png +0 -0
  98. package/examples/ionic/src/images/portrait.png +0 -0
  99. package/examples/ionic/src/main.css +130 -0
  100. package/examples/ionic/src/main.html +63 -0
  101. package/examples/ionic/src/main.ts +66 -0
  102. package/examples/ionic/tsconfig.json +12 -0
  103. package/examples/react_native/README.md +12 -0
  104. package/examples/react_native/app.config.ts +53 -0
  105. package/examples/react_native/assets/.gitkeep +0 -0
  106. package/examples/react_native/images/document.png +0 -0
  107. package/examples/react_native/images/icon/adaptive-icon.png +0 -0
  108. package/examples/react_native/images/icon/icon.png +0 -0
  109. package/examples/react_native/images/portrait.png +0 -0
  110. package/examples/react_native/index.html +11 -0
  111. package/examples/react_native/index.tsx +52 -0
  112. package/examples/react_native/metro.config.js +7 -0
  113. package/examples/react_native/package-lock.json +9254 -0
  114. package/examples/react_native/package.json +27 -0
  115. package/examples/react_native/scripts/android.sh +12 -0
  116. package/examples/react_native/scripts/ios.sh +11 -0
  117. package/examples/react_native/scripts/setup.sh +8 -0
  118. package/examples/react_native/src/main.css +130 -0
  119. package/examples/react_native/src/main.html +63 -0
  120. package/examples/react_native/src/main.tsx +50 -0
  121. package/ios/CVDDocumentReader.h +7 -0
  122. package/ios/CVDDocumentReader.m +39 -0
  123. package/ios/RGLWConfig.h +42 -0
  124. package/ios/RGLWConfig.m +1398 -0
  125. package/ios/RGLWJSONConstructor.h +185 -0
  126. package/ios/RGLWJSONConstructor.m +2379 -0
  127. package/ios/RGLWMain.h +36 -0
  128. package/ios/RGLWMain.m +610 -0
  129. package/ios/RNDocumentReader.h +8 -0
  130. package/ios/RNDocumentReader.m +49 -0
  131. package/package.json +36 -0
  132. package/plugin.xml +51 -0
  133. package/www/capacitor/config/InitConfig.js +25 -0
  134. package/www/capacitor/config/OnlineProcessingConfig.js +41 -0
  135. package/www/capacitor/config/RFIDConfig.js +31 -0
  136. package/www/capacitor/config/RecognizeConfig.js +103 -0
  137. package/www/capacitor/config/ScannerConfig.js +38 -0
  138. package/www/capacitor/index.js +486 -0
  139. package/www/capacitor/info/DocReaderException.js +57 -0
  140. package/www/capacitor/info/DocReaderScenario.js +71 -0
  141. package/www/capacitor/info/DocReaderVersion.js +23 -0
  142. package/www/capacitor/info/DocumentsDatabase.js +27 -0
  143. package/www/capacitor/info/License.js +22 -0
  144. package/www/capacitor/info/PrepareProgress.js +23 -0
  145. package/www/capacitor/info/RFIDException.js +19 -0
  146. package/www/capacitor/internal/bridge.js +98 -0
  147. package/www/capacitor/internal/cordova.js +17 -0
  148. package/www/capacitor/params/Functionality.js +303 -0
  149. package/www/capacitor/params/customization/Customization.js +550 -0
  150. package/www/capacitor/params/customization/CustomizationColors.js +74 -0
  151. package/www/capacitor/params/customization/CustomizationFonts.js +40 -0
  152. package/www/capacitor/params/customization/CustomizationImages.js +25 -0
  153. package/www/capacitor/params/customization/Font.js +28 -0
  154. package/www/capacitor/params/process_params/AuthenticityParams.js +129 -0
  155. package/www/capacitor/params/process_params/BackendProcessingConfig.js +25 -0
  156. package/www/capacitor/params/process_params/FaceApiParams.js +38 -0
  157. package/www/capacitor/params/process_params/FaceApiSearchParams.js +21 -0
  158. package/www/capacitor/params/process_params/GlaresCheckParams.js +18 -0
  159. package/www/capacitor/params/process_params/ImageQA.js +97 -0
  160. package/www/capacitor/params/process_params/LivenessParams.js +67 -0
  161. package/www/capacitor/params/process_params/ProcessParams.js +570 -0
  162. package/www/capacitor/params/process_params/RfidParams.js +15 -0
  163. package/www/capacitor/params/rfid_scenario/DTCDataGroups.js +53 -0
  164. package/www/capacitor/params/rfid_scenario/EDLDataGroups.js +116 -0
  165. package/www/capacitor/params/rfid_scenario/EIDDataGroups.js +165 -0
  166. package/www/capacitor/params/rfid_scenario/EPassportDataGroups.js +130 -0
  167. package/www/capacitor/params/rfid_scenario/RFIDScenario.js +493 -0
  168. package/www/capacitor/results/DocumentType.js +285 -0
  169. package/www/capacitor/results/Position.js +60 -0
  170. package/www/capacitor/results/Results.js +318 -0
  171. package/www/capacitor/results/TransactionInfo.js +16 -0
  172. package/www/capacitor/results/authenticity/Authenticity.js +23 -0
  173. package/www/capacitor/results/authenticity/AuthenticityCheck.js +33 -0
  174. package/www/capacitor/results/authenticity/AuthenticityElement.js +27 -0
  175. package/www/capacitor/results/authenticity/AuthenticityResult.js +26 -0
  176. package/www/capacitor/results/authenticity/CheckDiagnose.js +124 -0
  177. package/www/capacitor/results/authenticity/SecurityFeatureType.js +59 -0
  178. package/www/capacitor/results/barcode/BarcodeField.js +24 -0
  179. package/www/capacitor/results/barcode/BarcodeResult.js +24 -0
  180. package/www/capacitor/results/barcode/BarcodeStatus.js +33 -0
  181. package/www/capacitor/results/barcode/BarcodeType.js +21 -0
  182. package/www/capacitor/results/barcode/PDF417Info.js +16 -0
  183. package/www/capacitor/results/image_quality/ImageQuality.js +31 -0
  184. package/www/capacitor/results/image_quality/ImageQualityCheckType.js +19 -0
  185. package/www/capacitor/results/image_quality/ImageQualityGroup.js +30 -0
  186. package/www/capacitor/results/rfid/AccessControlProcedureType.js +21 -0
  187. package/www/capacitor/results/rfid/Application.js +47 -0
  188. package/www/capacitor/results/rfid/Attribute.js +16 -0
  189. package/www/capacitor/results/rfid/Authority.js +28 -0
  190. package/www/capacitor/results/rfid/CardProperties.js +38 -0
  191. package/www/capacitor/results/rfid/CertificateChain.js +51 -0
  192. package/www/capacitor/results/rfid/CertificateData.js +14 -0
  193. package/www/capacitor/results/rfid/DataField.js +16 -0
  194. package/www/capacitor/results/rfid/Extension.js +14 -0
  195. package/www/capacitor/results/rfid/File.js +39 -0
  196. package/www/capacitor/results/rfid/FileData.js +18 -0
  197. package/www/capacitor/results/rfid/RFIDAccessControlProcedureType.js +10 -0
  198. package/www/capacitor/results/rfid/RFIDCertificateType.js +13 -0
  199. package/www/capacitor/results/rfid/RFIDDataFileType.js +98 -0
  200. package/www/capacitor/results/rfid/RFIDSessionData.js +76 -0
  201. package/www/capacitor/results/rfid/RFIDValidity.js +16 -0
  202. package/www/capacitor/results/rfid/RFIDValue.js +20 -0
  203. package/www/capacitor/results/rfid/SecurityObject.js +31 -0
  204. package/www/capacitor/results/rfid/SecurityObjectCertificates.js +14 -0
  205. package/www/capacitor/results/rfid/SignerInfo.js +57 -0
  206. package/www/capacitor/results/status/CheckResult.js +5 -0
  207. package/www/capacitor/results/status/OpticalStatus.js +30 -0
  208. package/www/capacitor/results/status/RFIDStatus.js +26 -0
  209. package/www/capacitor/results/status/ResultsStatus.js +28 -0
  210. package/www/capacitor/results/visible_digital_seals/BytesData.js +18 -0
  211. package/www/capacitor/results/visible_digital_seals/LDSParsingErrorCodes.js +134 -0
  212. package/www/capacitor/results/visible_digital_seals/LDSParsingNotificationCodes.js +232 -0
  213. package/www/capacitor/results/visible_digital_seals/VDSNCData.js +40 -0
  214. package/www/capacitor/results/visual_results/Comparison.js +19 -0
  215. package/www/capacitor/results/visual_results/FieldType.js +658 -0
  216. package/www/capacitor/results/visual_results/GraphicField.js +33 -0
  217. package/www/capacitor/results/visual_results/GraphicFieldType.js +25 -0
  218. package/www/capacitor/results/visual_results/GraphicResult.js +22 -0
  219. package/www/capacitor/results/visual_results/LCID.js +174 -0
  220. package/www/capacitor/results/visual_results/Lights.js +11 -0
  221. package/www/capacitor/results/visual_results/RFIDOrigin.js +18 -0
  222. package/www/capacitor/results/visual_results/Rect.js +18 -0
  223. package/www/capacitor/results/visual_results/Symbol.js +18 -0
  224. package/www/capacitor/results/visual_results/TextField.js +68 -0
  225. package/www/capacitor/results/visual_results/TextResult.js +42 -0
  226. package/www/capacitor/results/visual_results/TextSource.js +19 -0
  227. package/www/capacitor/results/visual_results/Validity.js +17 -0
  228. package/www/capacitor/results/visual_results/Value.js +39 -0
  229. package/www/capacitor/rfid/PAAttribute.js +17 -0
  230. package/www/capacitor/rfid/PAResourcesIssuer.js +27 -0
  231. package/www/capacitor/rfid/PKDCertificate.js +54 -0
  232. package/www/capacitor/rfid/RFIDErrorCodes.js +123 -0
  233. package/www/capacitor/rfid/RFIDNotification.js +60 -0
  234. package/www/capacitor/rfid/TAChallenge.js +23 -0
  235. package/www/capacitor/rfid/TccParams.js +24 -0
  236. package/www/cordova.js +9816 -0
  237. package/www/react-native/config/InitConfig.js +25 -0
  238. package/www/react-native/config/OnlineProcessingConfig.js +41 -0
  239. package/www/react-native/config/RFIDConfig.js +31 -0
  240. package/www/react-native/config/RecognizeConfig.js +103 -0
  241. package/www/react-native/config/ScannerConfig.js +38 -0
  242. package/www/react-native/index.js +486 -0
  243. package/www/react-native/info/DocReaderException.js +57 -0
  244. package/www/react-native/info/DocReaderScenario.js +71 -0
  245. package/www/react-native/info/DocReaderVersion.js +23 -0
  246. package/www/react-native/info/DocumentsDatabase.js +27 -0
  247. package/www/react-native/info/License.js +22 -0
  248. package/www/react-native/info/PrepareProgress.js +23 -0
  249. package/www/react-native/info/RFIDException.js +19 -0
  250. package/www/react-native/internal/bridge.js +98 -0
  251. package/www/react-native/params/Functionality.js +303 -0
  252. package/www/react-native/params/customization/Customization.js +550 -0
  253. package/www/react-native/params/customization/CustomizationColors.js +74 -0
  254. package/www/react-native/params/customization/CustomizationFonts.js +40 -0
  255. package/www/react-native/params/customization/CustomizationImages.js +25 -0
  256. package/www/react-native/params/customization/Font.js +28 -0
  257. package/www/react-native/params/process_params/AuthenticityParams.js +129 -0
  258. package/www/react-native/params/process_params/BackendProcessingConfig.js +25 -0
  259. package/www/react-native/params/process_params/FaceApiParams.js +38 -0
  260. package/www/react-native/params/process_params/FaceApiSearchParams.js +21 -0
  261. package/www/react-native/params/process_params/GlaresCheckParams.js +18 -0
  262. package/www/react-native/params/process_params/ImageQA.js +97 -0
  263. package/www/react-native/params/process_params/LivenessParams.js +67 -0
  264. package/www/react-native/params/process_params/ProcessParams.js +570 -0
  265. package/www/react-native/params/process_params/RfidParams.js +15 -0
  266. package/www/react-native/params/rfid_scenario/DTCDataGroups.js +53 -0
  267. package/www/react-native/params/rfid_scenario/EDLDataGroups.js +116 -0
  268. package/www/react-native/params/rfid_scenario/EIDDataGroups.js +165 -0
  269. package/www/react-native/params/rfid_scenario/EPassportDataGroups.js +130 -0
  270. package/www/react-native/params/rfid_scenario/RFIDScenario.js +493 -0
  271. package/www/react-native/results/DocumentType.js +285 -0
  272. package/www/react-native/results/Position.js +60 -0
  273. package/www/react-native/results/Results.js +318 -0
  274. package/www/react-native/results/TransactionInfo.js +16 -0
  275. package/www/react-native/results/authenticity/Authenticity.js +23 -0
  276. package/www/react-native/results/authenticity/AuthenticityCheck.js +33 -0
  277. package/www/react-native/results/authenticity/AuthenticityElement.js +27 -0
  278. package/www/react-native/results/authenticity/AuthenticityResult.js +26 -0
  279. package/www/react-native/results/authenticity/CheckDiagnose.js +124 -0
  280. package/www/react-native/results/authenticity/SecurityFeatureType.js +59 -0
  281. package/www/react-native/results/barcode/BarcodeField.js +24 -0
  282. package/www/react-native/results/barcode/BarcodeResult.js +24 -0
  283. package/www/react-native/results/barcode/BarcodeStatus.js +33 -0
  284. package/www/react-native/results/barcode/BarcodeType.js +21 -0
  285. package/www/react-native/results/barcode/PDF417Info.js +16 -0
  286. package/www/react-native/results/image_quality/ImageQuality.js +31 -0
  287. package/www/react-native/results/image_quality/ImageQualityCheckType.js +19 -0
  288. package/www/react-native/results/image_quality/ImageQualityGroup.js +30 -0
  289. package/www/react-native/results/rfid/AccessControlProcedureType.js +21 -0
  290. package/www/react-native/results/rfid/Application.js +47 -0
  291. package/www/react-native/results/rfid/Attribute.js +16 -0
  292. package/www/react-native/results/rfid/Authority.js +28 -0
  293. package/www/react-native/results/rfid/CardProperties.js +38 -0
  294. package/www/react-native/results/rfid/CertificateChain.js +51 -0
  295. package/www/react-native/results/rfid/CertificateData.js +14 -0
  296. package/www/react-native/results/rfid/DataField.js +16 -0
  297. package/www/react-native/results/rfid/Extension.js +14 -0
  298. package/www/react-native/results/rfid/File.js +39 -0
  299. package/www/react-native/results/rfid/FileData.js +18 -0
  300. package/www/react-native/results/rfid/RFIDAccessControlProcedureType.js +10 -0
  301. package/www/react-native/results/rfid/RFIDCertificateType.js +13 -0
  302. package/www/react-native/results/rfid/RFIDDataFileType.js +98 -0
  303. package/www/react-native/results/rfid/RFIDSessionData.js +76 -0
  304. package/www/react-native/results/rfid/RFIDValidity.js +16 -0
  305. package/www/react-native/results/rfid/RFIDValue.js +20 -0
  306. package/www/react-native/results/rfid/SecurityObject.js +31 -0
  307. package/www/react-native/results/rfid/SecurityObjectCertificates.js +14 -0
  308. package/www/react-native/results/rfid/SignerInfo.js +57 -0
  309. package/www/react-native/results/status/CheckResult.js +5 -0
  310. package/www/react-native/results/status/OpticalStatus.js +30 -0
  311. package/www/react-native/results/status/RFIDStatus.js +26 -0
  312. package/www/react-native/results/status/ResultsStatus.js +28 -0
  313. package/www/react-native/results/visible_digital_seals/BytesData.js +18 -0
  314. package/www/react-native/results/visible_digital_seals/LDSParsingErrorCodes.js +134 -0
  315. package/www/react-native/results/visible_digital_seals/LDSParsingNotificationCodes.js +232 -0
  316. package/www/react-native/results/visible_digital_seals/VDSNCData.js +40 -0
  317. package/www/react-native/results/visual_results/Comparison.js +19 -0
  318. package/www/react-native/results/visual_results/FieldType.js +658 -0
  319. package/www/react-native/results/visual_results/GraphicField.js +33 -0
  320. package/www/react-native/results/visual_results/GraphicFieldType.js +25 -0
  321. package/www/react-native/results/visual_results/GraphicResult.js +22 -0
  322. package/www/react-native/results/visual_results/LCID.js +174 -0
  323. package/www/react-native/results/visual_results/Lights.js +11 -0
  324. package/www/react-native/results/visual_results/RFIDOrigin.js +18 -0
  325. package/www/react-native/results/visual_results/Rect.js +18 -0
  326. package/www/react-native/results/visual_results/Symbol.js +18 -0
  327. package/www/react-native/results/visual_results/TextField.js +68 -0
  328. package/www/react-native/results/visual_results/TextResult.js +42 -0
  329. package/www/react-native/results/visual_results/TextSource.js +19 -0
  330. package/www/react-native/results/visual_results/Validity.js +17 -0
  331. package/www/react-native/results/visual_results/Value.js +39 -0
  332. package/www/react-native/rfid/PAAttribute.js +17 -0
  333. package/www/react-native/rfid/PAResourcesIssuer.js +27 -0
  334. package/www/react-native/rfid/PKDCertificate.js +54 -0
  335. package/www/react-native/rfid/RFIDErrorCodes.js +123 -0
  336. package/www/react-native/rfid/RFIDNotification.js +60 -0
  337. package/www/react-native/rfid/TAChallenge.js +23 -0
  338. package/www/react-native/rfid/TccParams.js +24 -0
  339. package/www/types/config/InitConfig.d.ts +63 -0
  340. package/www/types/config/OnlineProcessingConfig.d.ts +22 -0
  341. package/www/types/config/RFIDConfig.d.ts +131 -0
  342. package/www/types/config/RecognizeConfig.d.ts +119 -0
  343. package/www/types/config/ScannerConfig.d.ts +54 -0
  344. package/www/types/index.d.ts +421 -0
  345. package/www/types/info/DocReaderException.d.ts +79 -0
  346. package/www/types/info/DocReaderScenario.d.ts +90 -0
  347. package/www/types/info/DocReaderVersion.d.ts +28 -0
  348. package/www/types/info/DocumentsDatabase.d.ts +42 -0
  349. package/www/types/info/License.d.ts +23 -0
  350. package/www/types/info/PrepareProgress.d.ts +15 -0
  351. package/www/types/info/RFIDException.d.ts +8 -0
  352. package/www/types/params/Functionality.d.ts +316 -0
  353. package/www/types/params/customization/Customization.d.ts +558 -0
  354. package/www/types/params/customization/CustomizationColors.d.ts +16 -0
  355. package/www/types/params/customization/CustomizationFonts.d.ts +13 -0
  356. package/www/types/params/customization/CustomizationImages.d.ts +12 -0
  357. package/www/types/params/customization/Font.d.ts +36 -0
  358. package/www/types/params/process_params/AuthenticityParams.d.ts +30 -0
  359. package/www/types/params/process_params/BackendProcessingConfig.d.ts +25 -0
  360. package/www/types/params/process_params/FaceApiParams.d.ts +68 -0
  361. package/www/types/params/process_params/FaceApiSearchParams.d.ts +35 -0
  362. package/www/types/params/process_params/GlaresCheckParams.d.ts +26 -0
  363. package/www/types/params/process_params/ImageQA.d.ts +79 -0
  364. package/www/types/params/process_params/LivenessParams.d.ts +20 -0
  365. package/www/types/params/process_params/ProcessParams.d.ts +465 -0
  366. package/www/types/params/process_params/RfidParams.d.ts +19 -0
  367. package/www/types/params/rfid_scenario/DTCDataGroups.d.ts +13 -0
  368. package/www/types/params/rfid_scenario/EDLDataGroups.d.ts +22 -0
  369. package/www/types/params/rfid_scenario/EIDDataGroups.d.ts +29 -0
  370. package/www/types/params/rfid_scenario/EPassportDataGroups.d.ts +24 -0
  371. package/www/types/params/rfid_scenario/RFIDScenario.d.ts +167 -0
  372. package/www/types/results/DocumentType.d.ts +525 -0
  373. package/www/types/results/Position.d.ts +50 -0
  374. package/www/types/results/Results.d.ts +283 -0
  375. package/www/types/results/TransactionInfo.d.ts +9 -0
  376. package/www/types/results/authenticity/Authenticity.d.ts +67 -0
  377. package/www/types/results/authenticity/AuthenticityCheck.d.ts +23 -0
  378. package/www/types/results/authenticity/AuthenticityElement.d.ts +26 -0
  379. package/www/types/results/authenticity/AuthenticityResult.d.ts +16 -0
  380. package/www/types/results/authenticity/CheckDiagnose.d.ts +229 -0
  381. package/www/types/results/authenticity/SecurityFeatureType.d.ts +100 -0
  382. package/www/types/results/barcode/BarcodeField.d.ts +37 -0
  383. package/www/types/results/barcode/BarcodeResult.d.ts +14 -0
  384. package/www/types/results/barcode/BarcodeStatus.d.ts +66 -0
  385. package/www/types/results/barcode/BarcodeType.d.ts +45 -0
  386. package/www/types/results/barcode/PDF417Info.d.ts +15 -0
  387. package/www/types/results/image_quality/ImageQuality.d.ts +18 -0
  388. package/www/types/results/image_quality/ImageQualityCheckType.d.ts +30 -0
  389. package/www/types/results/image_quality/ImageQualityGroup.d.ts +17 -0
  390. package/www/types/results/rfid/AccessControlProcedureType.d.ts +21 -0
  391. package/www/types/results/rfid/Application.d.ts +44 -0
  392. package/www/types/results/rfid/Attribute.d.ts +9 -0
  393. package/www/types/results/rfid/Authority.d.ts +11 -0
  394. package/www/types/results/rfid/CardProperties.d.ts +48 -0
  395. package/www/types/results/rfid/CertificateChain.d.ts +28 -0
  396. package/www/types/results/rfid/CertificateData.d.ts +7 -0
  397. package/www/types/results/rfid/DataField.d.ts +9 -0
  398. package/www/types/results/rfid/Extension.d.ts +7 -0
  399. package/www/types/results/rfid/File.d.ts +22 -0
  400. package/www/types/results/rfid/FileData.d.ts +9 -0
  401. package/www/types/results/rfid/RFIDAccessControlProcedureType.d.ts +18 -0
  402. package/www/types/results/rfid/RFIDCertificateType.d.ts +13 -0
  403. package/www/types/results/rfid/RFIDDataFileType.d.ts +101 -0
  404. package/www/types/results/rfid/RFIDSessionData.d.ts +48 -0
  405. package/www/types/results/rfid/RFIDValidity.d.ts +9 -0
  406. package/www/types/results/rfid/RFIDValue.d.ts +10 -0
  407. package/www/types/results/rfid/SecurityObject.d.ts +28 -0
  408. package/www/types/results/rfid/SecurityObjectCertificates.d.ts +8 -0
  409. package/www/types/results/rfid/SignerInfo.d.ts +41 -0
  410. package/www/types/results/status/CheckResult.d.ts +8 -0
  411. package/www/types/results/status/OpticalStatus.d.ts +29 -0
  412. package/www/types/results/status/RFIDStatus.d.ts +22 -0
  413. package/www/types/results/status/ResultsStatus.d.ts +24 -0
  414. package/www/types/results/visible_digital_seals/BytesData.d.ts +9 -0
  415. package/www/types/results/visible_digital_seals/LDSParsingErrorCodes.d.ts +132 -0
  416. package/www/types/results/visible_digital_seals/LDSParsingNotificationCodes.d.ts +230 -0
  417. package/www/types/results/visible_digital_seals/VDSNCData.d.ts +35 -0
  418. package/www/types/results/visual_results/Comparison.d.ts +15 -0
  419. package/www/types/results/visual_results/FieldType.d.ts +1310 -0
  420. package/www/types/results/visual_results/GraphicField.d.ts +29 -0
  421. package/www/types/results/visual_results/GraphicFieldType.d.ts +52 -0
  422. package/www/types/results/visual_results/GraphicResult.d.ts +10 -0
  423. package/www/types/results/visual_results/LCID.d.ts +173 -0
  424. package/www/types/results/visual_results/Lights.d.ts +23 -0
  425. package/www/types/results/visual_results/RFIDOrigin.d.ts +10 -0
  426. package/www/types/results/visual_results/Rect.d.ts +9 -0
  427. package/www/types/results/visual_results/Symbol.d.ts +14 -0
  428. package/www/types/results/visual_results/TextField.d.ts +40 -0
  429. package/www/types/results/visual_results/TextResult.d.ts +23 -0
  430. package/www/types/results/visual_results/TextSource.d.ts +15 -0
  431. package/www/types/results/visual_results/Validity.d.ts +13 -0
  432. package/www/types/results/visual_results/Value.d.ts +27 -0
  433. package/www/types/rfid/PAAttribute.d.ts +4 -0
  434. package/www/types/rfid/PAResourcesIssuer.d.ts +7 -0
  435. package/www/types/rfid/PKDCertificate.d.ts +34 -0
  436. package/www/types/rfid/RFIDErrorCodes.d.ts +121 -0
  437. package/www/types/rfid/RFIDNotification.d.ts +153 -0
  438. package/www/types/rfid/TAChallenge.d.ts +7 -0
  439. package/www/types/rfid/TccParams.d.ts +25 -0
@@ -0,0 +1,414 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 48;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 2FAD9763203C412B000D30F8 /* config.xml in Resources */ = {isa = PBXBuildFile; fileRef = 2FAD9762203C412B000D30F8 /* config.xml */; };
11
+ 50379B232058CBB4000EE86E /* capacitor.config.json in Resources */ = {isa = PBXBuildFile; fileRef = 50379B222058CBB4000EE86E /* capacitor.config.json */; };
12
+ 504EC3081FED79650016851F /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 504EC3071FED79650016851F /* AppDelegate.swift */; };
13
+ 504EC30D1FED79650016851F /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 504EC30B1FED79650016851F /* Main.storyboard */; };
14
+ 504EC30F1FED79650016851F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 504EC30E1FED79650016851F /* Assets.xcassets */; };
15
+ 504EC3121FED79650016851F /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 504EC3101FED79650016851F /* LaunchScreen.storyboard */; };
16
+ 50B271D11FEDC1A000F3C39B /* public in Resources */ = {isa = PBXBuildFile; fileRef = 50B271D01FEDC1A000F3C39B /* public */; };
17
+ A084ECDBA7D38E1E42DFC39D /* Pods_App.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AF277DCFFFF123FFC6DF26C7 /* Pods_App.framework */; };
18
+ C3C12F0D2DEDD3AA0068B75D /* db.dat in Resources */ = {isa = PBXBuildFile; fileRef = C3C12F0C2DEDD3AA0068B75D /* db.dat */; };
19
+ /* End PBXBuildFile section */
20
+
21
+ /* Begin PBXFileReference section */
22
+ 2FAD9762203C412B000D30F8 /* config.xml */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = config.xml; sourceTree = "<group>"; };
23
+ 34ADEF8A2B6C25C900B38C44 /* App.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = App.entitlements; sourceTree = "<group>"; };
24
+ 50379B222058CBB4000EE86E /* capacitor.config.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = capacitor.config.json; sourceTree = "<group>"; };
25
+ 504EC3041FED79650016851F /* App.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = App.app; sourceTree = BUILT_PRODUCTS_DIR; };
26
+ 504EC3071FED79650016851F /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
27
+ 504EC30C1FED79650016851F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
28
+ 504EC30E1FED79650016851F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
29
+ 504EC3111FED79650016851F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
30
+ 504EC3131FED79650016851F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
31
+ 50B271D01FEDC1A000F3C39B /* public */ = {isa = PBXFileReference; lastKnownFileType = folder; path = public; sourceTree = "<group>"; };
32
+ AF277DCFFFF123FFC6DF26C7 /* Pods_App.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_App.framework; sourceTree = BUILT_PRODUCTS_DIR; };
33
+ AF51FD2D460BCFE21FA515B2 /* Pods-App.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-App.release.xcconfig"; path = "Pods/Target Support Files/Pods-App/Pods-App.release.xcconfig"; sourceTree = "<group>"; };
34
+ C3C12F0C2DEDD3AA0068B75D /* db.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = db.dat; sourceTree = "<group>"; };
35
+ FC68EB0AF532CFC21C3344DD /* Pods-App.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-App.debug.xcconfig"; path = "Pods/Target Support Files/Pods-App/Pods-App.debug.xcconfig"; sourceTree = "<group>"; };
36
+ /* End PBXFileReference section */
37
+
38
+ /* Begin PBXFrameworksBuildPhase section */
39
+ 504EC3011FED79650016851F /* Frameworks */ = {
40
+ isa = PBXFrameworksBuildPhase;
41
+ buildActionMask = 2147483647;
42
+ files = (
43
+ A084ECDBA7D38E1E42DFC39D /* Pods_App.framework in Frameworks */,
44
+ );
45
+ runOnlyForDeploymentPostprocessing = 0;
46
+ };
47
+ /* End PBXFrameworksBuildPhase section */
48
+
49
+ /* Begin PBXGroup section */
50
+ 27E2DDA53C4D2A4D1A88CE4A /* Frameworks */ = {
51
+ isa = PBXGroup;
52
+ children = (
53
+ AF277DCFFFF123FFC6DF26C7 /* Pods_App.framework */,
54
+ );
55
+ name = Frameworks;
56
+ sourceTree = "<group>";
57
+ };
58
+ 504EC2FB1FED79650016851F = {
59
+ isa = PBXGroup;
60
+ children = (
61
+ 504EC3061FED79650016851F /* App */,
62
+ 504EC3051FED79650016851F /* Products */,
63
+ 7F8756D8B27F46E3366F6CEA /* Pods */,
64
+ 27E2DDA53C4D2A4D1A88CE4A /* Frameworks */,
65
+ );
66
+ sourceTree = "<group>";
67
+ };
68
+ 504EC3051FED79650016851F /* Products */ = {
69
+ isa = PBXGroup;
70
+ children = (
71
+ 504EC3041FED79650016851F /* App.app */,
72
+ );
73
+ name = Products;
74
+ sourceTree = "<group>";
75
+ };
76
+ 504EC3061FED79650016851F /* App */ = {
77
+ isa = PBXGroup;
78
+ children = (
79
+ 34ADEF8A2B6C25C900B38C44 /* App.entitlements */,
80
+ 50379B222058CBB4000EE86E /* capacitor.config.json */,
81
+ 504EC3071FED79650016851F /* AppDelegate.swift */,
82
+ 504EC30B1FED79650016851F /* Main.storyboard */,
83
+ 504EC30E1FED79650016851F /* Assets.xcassets */,
84
+ 504EC3101FED79650016851F /* LaunchScreen.storyboard */,
85
+ 504EC3131FED79650016851F /* Info.plist */,
86
+ 2FAD9762203C412B000D30F8 /* config.xml */,
87
+ 50B271D01FEDC1A000F3C39B /* public */,
88
+ C3C12F0C2DEDD3AA0068B75D /* db.dat */,
89
+ );
90
+ path = App;
91
+ sourceTree = "<group>";
92
+ };
93
+ 7F8756D8B27F46E3366F6CEA /* Pods */ = {
94
+ isa = PBXGroup;
95
+ children = (
96
+ FC68EB0AF532CFC21C3344DD /* Pods-App.debug.xcconfig */,
97
+ AF51FD2D460BCFE21FA515B2 /* Pods-App.release.xcconfig */,
98
+ );
99
+ name = Pods;
100
+ sourceTree = "<group>";
101
+ };
102
+ /* End PBXGroup section */
103
+
104
+ /* Begin PBXNativeTarget section */
105
+ 504EC3031FED79650016851F /* App */ = {
106
+ isa = PBXNativeTarget;
107
+ buildConfigurationList = 504EC3161FED79650016851F /* Build configuration list for PBXNativeTarget "App" */;
108
+ buildPhases = (
109
+ 6634F4EFEBD30273BCE97C65 /* [CP] Check Pods Manifest.lock */,
110
+ 504EC3001FED79650016851F /* Sources */,
111
+ 504EC3011FED79650016851F /* Frameworks */,
112
+ 504EC3021FED79650016851F /* Resources */,
113
+ 9592DBEFFC6D2A0C8D5DEB22 /* [CP] Embed Pods Frameworks */,
114
+ );
115
+ buildRules = (
116
+ );
117
+ dependencies = (
118
+ );
119
+ name = App;
120
+ productName = App;
121
+ productReference = 504EC3041FED79650016851F /* App.app */;
122
+ productType = "com.apple.product-type.application";
123
+ };
124
+ /* End PBXNativeTarget section */
125
+
126
+ /* Begin PBXProject section */
127
+ 504EC2FC1FED79650016851F /* Project object */ = {
128
+ isa = PBXProject;
129
+ attributes = {
130
+ LastSwiftUpdateCheck = 0920;
131
+ LastUpgradeCheck = 0920;
132
+ TargetAttributes = {
133
+ 504EC3031FED79650016851F = {
134
+ CreatedOnToolsVersion = 9.2;
135
+ LastSwiftMigration = 1100;
136
+ ProvisioningStyle = Automatic;
137
+ };
138
+ };
139
+ };
140
+ buildConfigurationList = 504EC2FF1FED79650016851F /* Build configuration list for PBXProject "App" */;
141
+ compatibilityVersion = "Xcode 8.0";
142
+ developmentRegion = en;
143
+ hasScannedForEncodings = 0;
144
+ knownRegions = (
145
+ en,
146
+ Base,
147
+ );
148
+ mainGroup = 504EC2FB1FED79650016851F;
149
+ productRefGroup = 504EC3051FED79650016851F /* Products */;
150
+ projectDirPath = "";
151
+ projectRoot = "";
152
+ targets = (
153
+ 504EC3031FED79650016851F /* App */,
154
+ );
155
+ };
156
+ /* End PBXProject section */
157
+
158
+ /* Begin PBXResourcesBuildPhase section */
159
+ 504EC3021FED79650016851F /* Resources */ = {
160
+ isa = PBXResourcesBuildPhase;
161
+ buildActionMask = 2147483647;
162
+ files = (
163
+ 504EC3121FED79650016851F /* LaunchScreen.storyboard in Resources */,
164
+ 50B271D11FEDC1A000F3C39B /* public in Resources */,
165
+ 504EC30F1FED79650016851F /* Assets.xcassets in Resources */,
166
+ 50379B232058CBB4000EE86E /* capacitor.config.json in Resources */,
167
+ 504EC30D1FED79650016851F /* Main.storyboard in Resources */,
168
+ 2FAD9763203C412B000D30F8 /* config.xml in Resources */,
169
+ C3C12F0D2DEDD3AA0068B75D /* db.dat in Resources */,
170
+ );
171
+ runOnlyForDeploymentPostprocessing = 0;
172
+ };
173
+ /* End PBXResourcesBuildPhase section */
174
+
175
+ /* Begin PBXShellScriptBuildPhase section */
176
+ 6634F4EFEBD30273BCE97C65 /* [CP] Check Pods Manifest.lock */ = {
177
+ isa = PBXShellScriptBuildPhase;
178
+ buildActionMask = 2147483647;
179
+ files = (
180
+ );
181
+ inputPaths = (
182
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
183
+ "${PODS_ROOT}/Manifest.lock",
184
+ );
185
+ name = "[CP] Check Pods Manifest.lock";
186
+ outputPaths = (
187
+ "$(DERIVED_FILE_DIR)/Pods-App-checkManifestLockResult.txt",
188
+ );
189
+ runOnlyForDeploymentPostprocessing = 0;
190
+ shellPath = /bin/sh;
191
+ 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";
192
+ showEnvVarsInLog = 0;
193
+ };
194
+ 9592DBEFFC6D2A0C8D5DEB22 /* [CP] Embed Pods Frameworks */ = {
195
+ isa = PBXShellScriptBuildPhase;
196
+ buildActionMask = 2147483647;
197
+ files = (
198
+ );
199
+ inputPaths = (
200
+ );
201
+ name = "[CP] Embed Pods Frameworks";
202
+ outputPaths = (
203
+ );
204
+ runOnlyForDeploymentPostprocessing = 0;
205
+ shellPath = /bin/sh;
206
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-App/Pods-App-frameworks.sh\"\n";
207
+ showEnvVarsInLog = 0;
208
+ };
209
+ /* End PBXShellScriptBuildPhase section */
210
+
211
+ /* Begin PBXSourcesBuildPhase section */
212
+ 504EC3001FED79650016851F /* Sources */ = {
213
+ isa = PBXSourcesBuildPhase;
214
+ buildActionMask = 2147483647;
215
+ files = (
216
+ 504EC3081FED79650016851F /* AppDelegate.swift in Sources */,
217
+ );
218
+ runOnlyForDeploymentPostprocessing = 0;
219
+ };
220
+ /* End PBXSourcesBuildPhase section */
221
+
222
+ /* Begin PBXVariantGroup section */
223
+ 504EC30B1FED79650016851F /* Main.storyboard */ = {
224
+ isa = PBXVariantGroup;
225
+ children = (
226
+ 504EC30C1FED79650016851F /* Base */,
227
+ );
228
+ name = Main.storyboard;
229
+ sourceTree = "<group>";
230
+ };
231
+ 504EC3101FED79650016851F /* LaunchScreen.storyboard */ = {
232
+ isa = PBXVariantGroup;
233
+ children = (
234
+ 504EC3111FED79650016851F /* Base */,
235
+ );
236
+ name = LaunchScreen.storyboard;
237
+ sourceTree = "<group>";
238
+ };
239
+ /* End PBXVariantGroup section */
240
+
241
+ /* Begin XCBuildConfiguration section */
242
+ 504EC3141FED79650016851F /* Debug */ = {
243
+ isa = XCBuildConfiguration;
244
+ buildSettings = {
245
+ ALWAYS_SEARCH_USER_PATHS = NO;
246
+ CLANG_ANALYZER_NONNULL = YES;
247
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
248
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
249
+ CLANG_CXX_LIBRARY = "libc++";
250
+ CLANG_ENABLE_MODULES = YES;
251
+ CLANG_ENABLE_OBJC_ARC = YES;
252
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
253
+ CLANG_WARN_BOOL_CONVERSION = YES;
254
+ CLANG_WARN_COMMA = YES;
255
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
256
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
257
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
258
+ CLANG_WARN_EMPTY_BODY = YES;
259
+ CLANG_WARN_ENUM_CONVERSION = YES;
260
+ CLANG_WARN_INFINITE_RECURSION = YES;
261
+ CLANG_WARN_INT_CONVERSION = YES;
262
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
263
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
264
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
265
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
266
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
267
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
268
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
269
+ CLANG_WARN_UNREACHABLE_CODE = YES;
270
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
271
+ CODE_SIGN_IDENTITY = "iPhone Developer";
272
+ COPY_PHASE_STRIP = NO;
273
+ DEBUG_INFORMATION_FORMAT = dwarf;
274
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
275
+ ENABLE_TESTABILITY = YES;
276
+ GCC_C_LANGUAGE_STANDARD = gnu11;
277
+ GCC_DYNAMIC_NO_PIC = NO;
278
+ GCC_NO_COMMON_BLOCKS = YES;
279
+ GCC_OPTIMIZATION_LEVEL = 0;
280
+ GCC_PREPROCESSOR_DEFINITIONS = (
281
+ "DEBUG=1",
282
+ "$(inherited)",
283
+ );
284
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
285
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
286
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
287
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
288
+ GCC_WARN_UNUSED_FUNCTION = YES;
289
+ GCC_WARN_UNUSED_VARIABLE = YES;
290
+ IPHONEOS_DEPLOYMENT_TARGET = 14.0;
291
+ MTL_ENABLE_DEBUG_INFO = YES;
292
+ ONLY_ACTIVE_ARCH = YES;
293
+ SDKROOT = iphoneos;
294
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
295
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
296
+ };
297
+ name = Debug;
298
+ };
299
+ 504EC3151FED79650016851F /* Release */ = {
300
+ isa = XCBuildConfiguration;
301
+ buildSettings = {
302
+ ALWAYS_SEARCH_USER_PATHS = NO;
303
+ CLANG_ANALYZER_NONNULL = YES;
304
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
305
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
306
+ CLANG_CXX_LIBRARY = "libc++";
307
+ CLANG_ENABLE_MODULES = YES;
308
+ CLANG_ENABLE_OBJC_ARC = YES;
309
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
310
+ CLANG_WARN_BOOL_CONVERSION = YES;
311
+ CLANG_WARN_COMMA = YES;
312
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
313
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
314
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
315
+ CLANG_WARN_EMPTY_BODY = YES;
316
+ CLANG_WARN_ENUM_CONVERSION = YES;
317
+ CLANG_WARN_INFINITE_RECURSION = YES;
318
+ CLANG_WARN_INT_CONVERSION = YES;
319
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
320
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
321
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
322
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
323
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
324
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
325
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
326
+ CLANG_WARN_UNREACHABLE_CODE = YES;
327
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
328
+ CODE_SIGN_IDENTITY = "iPhone Developer";
329
+ COPY_PHASE_STRIP = NO;
330
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
331
+ ENABLE_NS_ASSERTIONS = NO;
332
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
333
+ GCC_C_LANGUAGE_STANDARD = gnu11;
334
+ GCC_NO_COMMON_BLOCKS = YES;
335
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
336
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
337
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
338
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
339
+ GCC_WARN_UNUSED_FUNCTION = YES;
340
+ GCC_WARN_UNUSED_VARIABLE = YES;
341
+ IPHONEOS_DEPLOYMENT_TARGET = 14.0;
342
+ MTL_ENABLE_DEBUG_INFO = NO;
343
+ SDKROOT = iphoneos;
344
+ SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
345
+ VALIDATE_PRODUCT = YES;
346
+ };
347
+ name = Release;
348
+ };
349
+ 504EC3171FED79650016851F /* Debug */ = {
350
+ isa = XCBuildConfiguration;
351
+ baseConfigurationReference = FC68EB0AF532CFC21C3344DD /* Pods-App.debug.xcconfig */;
352
+ buildSettings = {
353
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
354
+ CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
355
+ CODE_SIGN_STYLE = Automatic;
356
+ CURRENT_PROJECT_VERSION = 1;
357
+ INFOPLIST_FILE = App/Info.plist;
358
+ IPHONEOS_DEPLOYMENT_TARGET = 14.0;
359
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
360
+ MARKETING_VERSION = 1.0;
361
+ OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
362
+ PRODUCT_BUNDLE_IDENTIFIER = regula.DocumentReader;
363
+ PRODUCT_NAME = "$(TARGET_NAME)";
364
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
365
+ SWIFT_VERSION = 5.0;
366
+ TARGETED_DEVICE_FAMILY = "1,2";
367
+ };
368
+ name = Debug;
369
+ };
370
+ 504EC3181FED79650016851F /* Release */ = {
371
+ isa = XCBuildConfiguration;
372
+ baseConfigurationReference = AF51FD2D460BCFE21FA515B2 /* Pods-App.release.xcconfig */;
373
+ buildSettings = {
374
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
375
+ CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
376
+ CODE_SIGN_STYLE = Automatic;
377
+ CURRENT_PROJECT_VERSION = 1;
378
+ INFOPLIST_FILE = App/Info.plist;
379
+ IPHONEOS_DEPLOYMENT_TARGET = 14.0;
380
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
381
+ MARKETING_VERSION = 1.0;
382
+ PRODUCT_BUNDLE_IDENTIFIER = regula.DocumentReader;
383
+ PRODUCT_NAME = "$(TARGET_NAME)";
384
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "";
385
+ SWIFT_VERSION = 5.0;
386
+ TARGETED_DEVICE_FAMILY = "1,2";
387
+ };
388
+ name = Release;
389
+ };
390
+ /* End XCBuildConfiguration section */
391
+
392
+ /* Begin XCConfigurationList section */
393
+ 504EC2FF1FED79650016851F /* Build configuration list for PBXProject "App" */ = {
394
+ isa = XCConfigurationList;
395
+ buildConfigurations = (
396
+ 504EC3141FED79650016851F /* Debug */,
397
+ 504EC3151FED79650016851F /* Release */,
398
+ );
399
+ defaultConfigurationIsVisible = 0;
400
+ defaultConfigurationName = Release;
401
+ };
402
+ 504EC3161FED79650016851F /* Build configuration list for PBXNativeTarget "App" */ = {
403
+ isa = XCConfigurationList;
404
+ buildConfigurations = (
405
+ 504EC3171FED79650016851F /* Debug */,
406
+ 504EC3181FED79650016851F /* Release */,
407
+ );
408
+ defaultConfigurationIsVisible = 0;
409
+ defaultConfigurationName = Release;
410
+ };
411
+ /* End XCConfigurationList section */
412
+ };
413
+ rootObject = 504EC2FC1FED79650016851F /* Project object */;
414
+ }
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Workspace
3
+ version = "1.0">
4
+ <FileRef
5
+ location = "self:App.xcodeproj">
6
+ </FileRef>
7
+ </Workspace>
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Workspace
3
+ version = "1.0">
4
+ <FileRef
5
+ location = "group:App.xcodeproj">
6
+ </FileRef>
7
+ <FileRef
8
+ location = "group:Pods/Pods.xcodeproj">
9
+ </FileRef>
10
+ </Workspace>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>IDEDidComputeMac32BitWarning</key>
6
+ <true/>
7
+ </dict>
8
+ </plist>
@@ -0,0 +1,26 @@
1
+ source "https://github.com/CocoaPods/Specs.git"
2
+
3
+ require_relative '../../node_modules/@capacitor/ios/scripts/pods_helpers'
4
+
5
+ platform :ios, '14.0'
6
+ use_frameworks!
7
+
8
+ # workaround to avoid Xcode caching of Pods that requires
9
+ # Product -> Clean Build Folder after new Cordova plugins installed
10
+ # Requires CocoaPods 1.6 or newer
11
+ install! 'cocoapods', :disable_input_output_paths => true
12
+
13
+ def capacitor_pods
14
+ pod 'Capacitor', :path => '../../node_modules/@capacitor/ios'
15
+ pod 'CapacitorCordova', :path => '../../node_modules/@capacitor/ios'
16
+ pod 'CapacitorApp', :path => '../../node_modules/@capacitor/app'
17
+ end
18
+
19
+ target 'App' do
20
+ capacitor_pods
21
+ # Add your Pods here
22
+ end
23
+
24
+ post_install do |installer|
25
+ assertDeploymentTarget(installer)
26
+ end
@@ -0,0 +1,56 @@
1
+ PODS:
2
+ - Capacitor (7.0.1):
3
+ - CapacitorCordova
4
+ - CapacitorApp (7.0.0):
5
+ - Capacitor
6
+ - CapacitorCordova (7.0.1)
7
+ - CapacitorStatusBar (7.0.0):
8
+ - Capacitor
9
+ - CordovaPlugins (7.0.1):
10
+ - CapacitorCordova
11
+ - CordovaPluginsResources (0.0.105)
12
+
13
+ DEPENDENCIES:
14
+ - "Capacitor (from `../../node_modules/@capacitor/ios`)"
15
+ - "CapacitorApp (from `../../node_modules/@capacitor/app`)"
16
+ - "CapacitorCordova (from `../../node_modules/@capacitor/ios`)"
17
+ - "CapacitorStatusBar (from `../../node_modules/@capacitor/status-bar`)"
18
+ - CordovaPlugins (from `../capacitor-cordova-ios-plugins`)
19
+ - CordovaPluginsResources (from `../capacitor-cordova-ios-plugins`)
20
+
21
+ SPEC REPOS:
22
+ https://github.com/CocoaPods/Specs.git:
23
+ - BTDevice
24
+ - DocumentReader
25
+ - DocumentReaderFullAuthRFID
26
+ - RegulaCommon
27
+
28
+ EXTERNAL SOURCES:
29
+ Capacitor:
30
+ :path: "../../node_modules/@capacitor/ios"
31
+ CapacitorApp:
32
+ :path: "../../node_modules/@capacitor/app"
33
+ CapacitorCordova:
34
+ :path: "../../node_modules/@capacitor/ios"
35
+ CapacitorStatusBar:
36
+ :path: "../../node_modules/@capacitor/status-bar"
37
+ CordovaPlugins:
38
+ :path: "../capacitor-cordova-ios-plugins"
39
+ CordovaPluginsResources:
40
+ :path: "../capacitor-cordova-ios-plugins"
41
+
42
+ SPEC CHECKSUMS:
43
+ BTDevice: 86105ab20faef7bb66de90739a0f7a4405608b8b
44
+ Capacitor: de199cba6c8b20995428ad0b7cb0bc6ca625ffd4
45
+ CapacitorApp: 9cb31064a6c6bb2b1438583733a7bf45557fc1da
46
+ CapacitorCordova: 63d476958d5022d76f197031e8b7ea3519988c64
47
+ CapacitorStatusBar: a8c4c83ed2e973bdafb979e80e4b00d027832cb7
48
+ CordovaPlugins: 5ecabc5bc15ef6940ee1cfee0cb84727e9712ed6
49
+ CordovaPluginsResources: 0c211f770ed91763a179ebcd9b9346e120b70662
50
+ DocumentReader: d846f670d5c3fbfaae632575bb061f0715ae9a95
51
+ DocumentReaderFullAuthRFID: eef3a88905e78359773091b4dc4595b0eec99d1f
52
+ RegulaCommon: 54f82928f414e73365df1f6ed3473e7a7055b3e7
53
+
54
+ PODFILE CHECKSUM: 915efc40b9c38c1bec7db5b40ae36925d0b1e1e8
55
+
56
+ COCOAPODS: 1.16.2