react-native-scanbot-barcode-scanner-sdk 5.1.2-alpha.2 → 6.1.0-rc.2

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 (187) hide show
  1. package/Libraries.txt +439 -16
  2. package/RNScanbotBarcodeSDK.podspec +1 -1
  3. package/android/build.gradle +1 -1
  4. package/android/gradle.properties +4 -4
  5. package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/ScanbotBarcodeSdkModule.kt +27 -25
  6. package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/ScanbotBarcodeSdkPluginResultDelegate.kt +2 -2
  7. package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/components/barcode_scanner_view/ScanbotBarcodeScannerView.kt +0 -1
  8. package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/components/barcode_scanner_view/ScanbotBarcodeScannerViewEvents.kt +4 -24
  9. package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/components/barcode_scanner_view/ScanbotBarcodeScannerViewManager.kt +0 -8
  10. package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/models/ScanbotBarcodeScannerModels.kt +4 -10
  11. package/android/src/paper/com/facebook/react/viewmanagers/ScanbotBarcodeScannerViewManagerDelegate.java +0 -3
  12. package/android/src/paper/com/facebook/react/viewmanagers/ScanbotBarcodeScannerViewManagerInterface.java +0 -1
  13. package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerLegacyView.h +0 -2
  14. package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerLegacyView.m +4 -16
  15. package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerView.mm +0 -17
  16. package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewControllerWrapper.h +0 -6
  17. package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewControllerWrapper.m +1 -10
  18. package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewManager.mm +0 -7
  19. package/ios/ScanbotBarcodeSdk.m +57 -48
  20. package/ios/ScanbotBarcodeSdkPluginResultDelegate.h +1 -1
  21. package/ios/ScanbotBarcodeSdkPluginResultDelegate.m +13 -13
  22. package/lib/commonjs/component/barcode-camera-view/ScanbotBarcodeCameraView.js +1 -13
  23. package/lib/commonjs/component/barcode-camera-view/ScanbotBarcodeCameraView.js.map +1 -1
  24. package/lib/commonjs/component/spec/ScanbotBarcodeScannerViewNativeComponent.js +1 -1
  25. package/lib/commonjs/component/spec/ScanbotBarcodeScannerViewNativeComponent.js.map +1 -1
  26. package/lib/commonjs/documents/BarcodeDocumentModel.js +612 -613
  27. package/lib/commonjs/documents/BarcodeDocumentModel.js.map +1 -1
  28. package/lib/commonjs/documents/GenericDocument.js +82 -49
  29. package/lib/commonjs/documents/GenericDocument.js.map +1 -1
  30. package/lib/commonjs/index.js +15 -13
  31. package/lib/commonjs/index.js.map +1 -1
  32. package/lib/commonjs/ui_v2/barcode/ArTrackingOverlayConfiguration.js +10 -47
  33. package/lib/commonjs/ui_v2/barcode/ArTrackingOverlayConfiguration.js.map +1 -1
  34. package/lib/commonjs/ui_v2/barcode/BarcodeRecognizerConfiguration.js +47 -19
  35. package/lib/commonjs/ui_v2/barcode/BarcodeRecognizerConfiguration.js.map +1 -1
  36. package/lib/commonjs/ui_v2/barcode/BarcodeScannerConfiguration.js.map +1 -1
  37. package/lib/commonjs/ui_v2/barcode/FindAndPickScanningModeUseCase.js +8 -4
  38. package/lib/commonjs/ui_v2/barcode/FindAndPickScanningModeUseCase.js.map +1 -1
  39. package/lib/commonjs/ui_v2/barcode/MultipleScanningModeUseCase.js +9 -1
  40. package/lib/commonjs/ui_v2/barcode/MultipleScanningModeUseCase.js.map +1 -1
  41. package/lib/commonjs/ui_v2/barcode/SingleScanningModeUseCase.js +1 -1
  42. package/lib/commonjs/ui_v2/barcode/SingleScanningModeUseCase.js.map +1 -1
  43. package/lib/commonjs/ui_v2/common/ActionBarConfiguration.js +3 -3
  44. package/lib/commonjs/ui_v2/common/CameraConfiguration.js +10 -10
  45. package/lib/commonjs/ui_v2/common/CameraPermission.js +25 -9
  46. package/lib/commonjs/ui_v2/common/CameraPermission.js.map +1 -1
  47. package/lib/commonjs/ui_v2/common/Common.js +241 -71
  48. package/lib/commonjs/ui_v2/common/Common.js.map +1 -1
  49. package/lib/commonjs/ui_v2/common/NavigationBarConfiguration.js +6 -0
  50. package/lib/commonjs/ui_v2/common/NavigationBarConfiguration.js.map +1 -0
  51. package/lib/commonjs/ui_v2/common/ScanbotAlertDialog.js +34 -12
  52. package/lib/commonjs/ui_v2/common/ScanbotAlertDialog.js.map +1 -1
  53. package/lib/commonjs/ui_v2/common/TopBarConfiguration.js +8 -8
  54. package/lib/commonjs/ui_v2/common/UserGuidanceConfiguration.js +51 -4
  55. package/lib/commonjs/ui_v2/common/UserGuidanceConfiguration.js.map +1 -1
  56. package/lib/commonjs/ui_v2/common/ViewFinderConfiguration.js +11 -11
  57. package/lib/commonjs/ui_v2/index.js +14 -1
  58. package/lib/commonjs/ui_v2/index.js.map +1 -1
  59. package/lib/commonjs/utils.js +8 -1
  60. package/lib/commonjs/utils.js.map +1 -1
  61. package/lib/module/component/barcode-camera-view/ScanbotBarcodeCameraView.js +1 -13
  62. package/lib/module/component/barcode-camera-view/ScanbotBarcodeCameraView.js.map +1 -1
  63. package/lib/module/component/spec/ScanbotBarcodeScannerViewNativeComponent.js +1 -1
  64. package/lib/module/component/spec/ScanbotBarcodeScannerViewNativeComponent.js.map +1 -1
  65. package/lib/module/documents/BarcodeDocumentModel.js +611 -612
  66. package/lib/module/documents/BarcodeDocumentModel.js.map +1 -1
  67. package/lib/module/documents/GenericDocument.js +84 -51
  68. package/lib/module/documents/GenericDocument.js.map +1 -1
  69. package/lib/module/index.js +7 -1
  70. package/lib/module/index.js.map +1 -1
  71. package/lib/module/ui_v2/barcode/ArTrackingOverlayConfiguration.js +1 -36
  72. package/lib/module/ui_v2/barcode/ArTrackingOverlayConfiguration.js.map +1 -1
  73. package/lib/module/ui_v2/barcode/BarcodeRecognizerConfiguration.js +47 -19
  74. package/lib/module/ui_v2/barcode/BarcodeRecognizerConfiguration.js.map +1 -1
  75. package/lib/module/ui_v2/barcode/BarcodeScannerConfiguration.js.map +1 -1
  76. package/lib/module/ui_v2/barcode/FindAndPickScanningModeUseCase.js +6 -2
  77. package/lib/module/ui_v2/barcode/FindAndPickScanningModeUseCase.js.map +1 -1
  78. package/lib/module/ui_v2/barcode/MultipleScanningModeUseCase.js +9 -1
  79. package/lib/module/ui_v2/barcode/MultipleScanningModeUseCase.js.map +1 -1
  80. package/lib/module/ui_v2/barcode/SingleScanningModeUseCase.js +1 -1
  81. package/lib/module/ui_v2/barcode/SingleScanningModeUseCase.js.map +1 -1
  82. package/lib/module/ui_v2/common/ActionBarConfiguration.js +3 -3
  83. package/lib/module/ui_v2/common/CameraConfiguration.js +10 -10
  84. package/lib/module/ui_v2/common/CameraPermission.js +25 -9
  85. package/lib/module/ui_v2/common/CameraPermission.js.map +1 -1
  86. package/lib/module/ui_v2/common/Common.js +233 -67
  87. package/lib/module/ui_v2/common/Common.js.map +1 -1
  88. package/lib/module/ui_v2/common/NavigationBarConfiguration.js +2 -0
  89. package/lib/module/ui_v2/common/NavigationBarConfiguration.js.map +1 -0
  90. package/lib/module/ui_v2/common/ScanbotAlertDialog.js +35 -12
  91. package/lib/module/ui_v2/common/ScanbotAlertDialog.js.map +1 -1
  92. package/lib/module/ui_v2/common/TopBarConfiguration.js +8 -8
  93. package/lib/module/ui_v2/common/UserGuidanceConfiguration.js +50 -3
  94. package/lib/module/ui_v2/common/UserGuidanceConfiguration.js.map +1 -1
  95. package/lib/module/ui_v2/common/ViewFinderConfiguration.js +11 -11
  96. package/lib/module/ui_v2/index.js +3 -1
  97. package/lib/module/ui_v2/index.js.map +1 -1
  98. package/lib/module/utils.js +6 -0
  99. package/lib/module/utils.js.map +1 -1
  100. package/lib/typescript/src/component/barcode-camera-view/ScanbotBarcodeCameraView.d.ts.map +1 -1
  101. package/lib/typescript/src/component/barcode-camera-view/ScanbotBarcodeCameraViewProperties.d.ts +3 -8
  102. package/lib/typescript/src/component/barcode-camera-view/ScanbotBarcodeCameraViewProperties.d.ts.map +1 -1
  103. package/lib/typescript/src/component/spec/ScanbotBarcodeScannerViewNativeComponent.d.ts +0 -3
  104. package/lib/typescript/src/component/spec/ScanbotBarcodeScannerViewNativeComponent.d.ts.map +1 -1
  105. package/lib/typescript/src/configurations.d.ts +13 -5
  106. package/lib/typescript/src/configurations.d.ts.map +1 -1
  107. package/lib/typescript/src/customConfigurations.d.ts +19 -3
  108. package/lib/typescript/src/customConfigurations.d.ts.map +1 -1
  109. package/lib/typescript/src/documents/BarcodeDocumentModel.d.ts +70 -71
  110. package/lib/typescript/src/documents/BarcodeDocumentModel.d.ts.map +1 -1
  111. package/lib/typescript/src/documents/CommonFieldType.d.ts +58 -109
  112. package/lib/typescript/src/documents/CommonFieldType.d.ts.map +1 -1
  113. package/lib/typescript/src/documents/GenericDocument.d.ts +95 -86
  114. package/lib/typescript/src/documents/GenericDocument.d.ts.map +1 -1
  115. package/lib/typescript/src/index.d.ts +5 -1
  116. package/lib/typescript/src/index.d.ts.map +1 -1
  117. package/lib/typescript/src/results.d.ts +1 -13
  118. package/lib/typescript/src/results.d.ts.map +1 -1
  119. package/lib/typescript/src/types.d.ts +25 -20
  120. package/lib/typescript/src/types.d.ts.map +1 -1
  121. package/lib/typescript/src/ui_v2/barcode/ArTrackingOverlayConfiguration.d.ts +1 -22
  122. package/lib/typescript/src/ui_v2/barcode/ArTrackingOverlayConfiguration.d.ts.map +1 -1
  123. package/lib/typescript/src/ui_v2/barcode/BarcodeRecognizerConfiguration.d.ts +41 -19
  124. package/lib/typescript/src/ui_v2/barcode/BarcodeRecognizerConfiguration.d.ts.map +1 -1
  125. package/lib/typescript/src/ui_v2/barcode/BarcodeScannerConfiguration.d.ts.map +1 -1
  126. package/lib/typescript/src/ui_v2/barcode/BarcodeUseCase.d.ts +0 -7
  127. package/lib/typescript/src/ui_v2/barcode/BarcodeUseCase.d.ts.map +1 -1
  128. package/lib/typescript/src/ui_v2/barcode/FindAndPickScanningModeUseCase.d.ts +4 -0
  129. package/lib/typescript/src/ui_v2/barcode/FindAndPickScanningModeUseCase.d.ts.map +1 -1
  130. package/lib/typescript/src/ui_v2/barcode/MultipleScanningModeUseCase.d.ts +5 -0
  131. package/lib/typescript/src/ui_v2/barcode/MultipleScanningModeUseCase.d.ts.map +1 -1
  132. package/lib/typescript/src/ui_v2/common/ActionBarConfiguration.d.ts +3 -3
  133. package/lib/typescript/src/ui_v2/common/CameraConfiguration.d.ts +10 -10
  134. package/lib/typescript/src/ui_v2/common/CameraPermission.d.ts +3 -3
  135. package/lib/typescript/src/ui_v2/common/CameraPermission.d.ts.map +1 -1
  136. package/lib/typescript/src/ui_v2/common/Common.d.ts +168 -66
  137. package/lib/typescript/src/ui_v2/common/Common.d.ts.map +1 -1
  138. package/lib/typescript/src/ui_v2/common/NavigationBarConfiguration.d.ts +12 -0
  139. package/lib/typescript/src/ui_v2/common/NavigationBarConfiguration.d.ts.map +1 -0
  140. package/lib/typescript/src/ui_v2/common/ScanbotAlertDialog.d.ts +11 -7
  141. package/lib/typescript/src/ui_v2/common/ScanbotAlertDialog.d.ts.map +1 -1
  142. package/lib/typescript/src/ui_v2/common/TopBarConfiguration.d.ts +8 -8
  143. package/lib/typescript/src/ui_v2/common/UserGuidanceConfiguration.d.ts +28 -3
  144. package/lib/typescript/src/ui_v2/common/UserGuidanceConfiguration.d.ts.map +1 -1
  145. package/lib/typescript/src/ui_v2/common/ViewFinderConfiguration.d.ts +11 -18
  146. package/lib/typescript/src/ui_v2/common/ViewFinderConfiguration.d.ts.map +1 -1
  147. package/lib/typescript/src/ui_v2/index.d.ts +1 -0
  148. package/lib/typescript/src/ui_v2/index.d.ts.map +1 -1
  149. package/lib/typescript/src/utils.d.ts +5 -2
  150. package/lib/typescript/src/utils.d.ts.map +1 -1
  151. package/package.json +2 -2
  152. package/src/component/barcode-camera-view/ScanbotBarcodeCameraView.tsx +1 -17
  153. package/src/component/barcode-camera-view/ScanbotBarcodeCameraViewProperties.ts +2 -9
  154. package/src/component/spec/ScanbotBarcodeScannerViewNativeComponent.ts +1 -4
  155. package/src/configurations.ts +19 -7
  156. package/src/customConfigurations.ts +19 -3
  157. package/src/documents/BarcodeDocumentModel.ts +644 -623
  158. package/src/documents/CommonFieldType.ts +59 -82
  159. package/src/documents/GenericDocument.ts +104 -86
  160. package/src/index.ts +7 -1
  161. package/src/results.ts +1 -16
  162. package/src/types.ts +26 -23
  163. package/src/ui_v2/barcode/ArTrackingOverlayConfiguration.ts +1 -36
  164. package/src/ui_v2/barcode/BarcodeRecognizerConfiguration.ts +60 -22
  165. package/src/ui_v2/barcode/BarcodeScannerConfiguration.ts +2 -2
  166. package/src/ui_v2/barcode/BarcodeUseCase.ts +1 -1
  167. package/src/ui_v2/barcode/FindAndPickScanningModeUseCase.ts +6 -2
  168. package/src/ui_v2/barcode/MultipleScanningModeUseCase.ts +9 -1
  169. package/src/ui_v2/barcode/SingleScanningModeUseCase.ts +1 -1
  170. package/src/ui_v2/common/ActionBarConfiguration.ts +3 -3
  171. package/src/ui_v2/common/CameraConfiguration.ts +10 -10
  172. package/src/ui_v2/common/CameraPermission.ts +25 -9
  173. package/src/ui_v2/common/Common.ts +233 -67
  174. package/src/ui_v2/common/NavigationBarConfiguration.ts +13 -0
  175. package/src/ui_v2/common/ScanbotAlertDialog.ts +32 -13
  176. package/src/ui_v2/common/TopBarConfiguration.ts +8 -8
  177. package/src/ui_v2/common/UserGuidanceConfiguration.ts +44 -3
  178. package/src/ui_v2/common/ViewFinderConfiguration.ts +11 -11
  179. package/src/ui_v2/index.ts +5 -9
  180. package/src/utils.ts +10 -0
  181. package/lib/commonjs/documents/Point.js +0 -14
  182. package/lib/commonjs/documents/Point.js.map +0 -1
  183. package/lib/module/documents/Point.js +0 -7
  184. package/lib/module/documents/Point.js.map +0 -1
  185. package/lib/typescript/src/documents/Point.d.ts +0 -6
  186. package/lib/typescript/src/documents/Point.d.ts.map +0 -1
  187. package/src/documents/Point.ts +0 -10
package/Libraries.txt CHANGED
@@ -1,6 +1,6 @@
1
- Open Source libraries used in the Scanbot Barcode SDK for React Native version 5.1.2
1
+ Open Source libraries used in the Scanbot Barcode SDK for React Native version 6.1.0
2
2
 
3
- Open Source libraries used in ScanbotBarcodeScannerSDK for iOS version 5.1.3:
3
+ Open Source libraries used in ScanbotBarcodeScannerSDK for iOS version 6.1.1:
4
4
 
5
5
  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
6
6
 
@@ -295,6 +295,191 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
295
295
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
296
296
 
297
297
 
298
+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
299
+
300
+ gs1-syntax-dictionary
301
+
302
+ Version 2023-12-11
303
+ (https://github.com/gs1/gs1-syntax-dictionary)
304
+
305
+ Apache License
306
+ Version 2.0, January 2004
307
+ http://www.apache.org/licenses/
308
+
309
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
310
+
311
+ 1. Definitions.
312
+
313
+ "License" shall mean the terms and conditions for use, reproduction,
314
+ and distribution as defined by Sections 1 through 9 of this document.
315
+
316
+ "Licensor" shall mean the copyright owner or entity authorized by
317
+ the copyright owner that is granting the License.
318
+
319
+ "Legal Entity" shall mean the union of the acting entity and all
320
+ other entities that control, are controlled by, or are under common
321
+ control with that entity. For the purposes of this definition,
322
+ "control" means (i) the power, direct or indirect, to cause the
323
+ direction or management of such entity, whether by contract or
324
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
325
+ outstanding shares, or (iii) beneficial ownership of such entity.
326
+
327
+ "You" (or "Your") shall mean an individual or Legal Entity
328
+ exercising permissions granted by this License.
329
+
330
+ "Source" form shall mean the preferred form for making modifications,
331
+ including but not limited to software source code, documentation
332
+ source, and configuration files.
333
+
334
+ "Object" form shall mean any form resulting from mechanical
335
+ transformation or translation of a Source form, including but
336
+ not limited to compiled object code, generated documentation,
337
+ and conversions to other media types.
338
+
339
+ "Work" shall mean the work of authorship, whether in Source or
340
+ Object form, made available under the License, as indicated by a
341
+ copyright notice that is included in or attached to the work
342
+ (an example is provided in the Appendix below).
343
+
344
+ "Derivative Works" shall mean any work, whether in Source or Object
345
+ form, that is based on (or derived from) the Work and for which the
346
+ editorial revisions, annotations, elaborations, or other modifications
347
+ represent, as a whole, an original work of authorship. For the purposes
348
+ of this License, Derivative Works shall not include works that remain
349
+ separable from, or merely link (or bind by name) to the interfaces of,
350
+ the Work and Derivative Works thereof.
351
+
352
+ "Contribution" shall mean any work of authorship, including
353
+ the original version of the Work and any modifications or additions
354
+ to that Work or Derivative Works thereof, that is intentionally
355
+ submitted to Licensor for inclusion in the Work by the copyright owner
356
+ or by an individual or Legal Entity authorized to submit on behalf of
357
+ the copyright owner. For the purposes of this definition, "submitted"
358
+ means any form of electronic, verbal, or written communication sent
359
+ to the Licensor or its representatives, including but not limited to
360
+ communication on electronic mailing lists, source code control systems,
361
+ and issue tracking systems that are managed by, or on behalf of, the
362
+ Licensor for the purpose of discussing and improving the Work, but
363
+ excluding communication that is conspicuously marked or otherwise
364
+ designated in writing by the copyright owner as "Not a Contribution."
365
+
366
+ "Contributor" shall mean Licensor and any individual or Legal Entity
367
+ on behalf of whom a Contribution has been received by Licensor and
368
+ subsequently incorporated within the Work.
369
+
370
+ 2. Grant of Copyright License. Subject to the terms and conditions of
371
+ this License, each Contributor hereby grants to You a perpetual,
372
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
373
+ copyright license to reproduce, prepare Derivative Works of,
374
+ publicly display, publicly perform, sublicense, and distribute the
375
+ Work and such Derivative Works in Source or Object form.
376
+
377
+ 3. Grant of Patent License. Subject to the terms and conditions of
378
+ this License, each Contributor hereby grants to You a perpetual,
379
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
380
+ (except as stated in this section) patent license to make, have made,
381
+ use, offer to sell, sell, import, and otherwise transfer the Work,
382
+ where such license applies only to those patent claims licensable
383
+ by such Contributor that are necessarily infringed by their
384
+ Contribution(s) alone or by combination of their Contribution(s)
385
+ with the Work to which such Contribution(s) was submitted. If You
386
+ institute patent litigation against any entity (including a
387
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
388
+ or a Contribution incorporated within the Work constitutes direct
389
+ or contributory patent infringement, then any patent licenses
390
+ granted to You under this License for that Work shall terminate
391
+ as of the date such litigation is filed.
392
+
393
+ 4. Redistribution. You may reproduce and distribute copies of the
394
+ Work or Derivative Works thereof in any medium, with or without
395
+ modifications, and in Source or Object form, provided that You
396
+ meet the following conditions:
397
+
398
+ (a) You must give any other recipients of the Work or
399
+ Derivative Works a copy of this License; and
400
+
401
+ (b) You must cause any modified files to carry prominent notices
402
+ stating that You changed the files; and
403
+
404
+ (c) You must retain, in the Source form of any Derivative Works
405
+ that You distribute, all copyright, patent, trademark, and
406
+ attribution notices from the Source form of the Work,
407
+ excluding those notices that do not pertain to any part of
408
+ the Derivative Works; and
409
+
410
+ (d) If the Work includes a "NOTICE" text file as part of its
411
+ distribution, then any Derivative Works that You distribute must
412
+ include a readable copy of the attribution notices contained
413
+ within such NOTICE file, excluding those notices that do not
414
+ pertain to any part of the Derivative Works, in at least one
415
+ of the following places: within a NOTICE text file distributed
416
+ as part of the Derivative Works; within the Source form or
417
+ documentation, if provided along with the Derivative Works; or,
418
+ within a display generated by the Derivative Works, if and
419
+ wherever such third-party notices normally appear. The contents
420
+ of the NOTICE file are for informational purposes only and
421
+ do not modify the License. You may add Your own attribution
422
+ notices within Derivative Works that You distribute, alongside
423
+ or as an addendum to the NOTICE text from the Work, provided
424
+ that such additional attribution notices cannot be construed
425
+ as modifying the License.
426
+
427
+ You may add Your own copyright statement to Your modifications and
428
+ may provide additional or different license terms and conditions
429
+ for use, reproduction, or distribution of Your modifications, or
430
+ for any such Derivative Works as a whole, provided Your use,
431
+ reproduction, and distribution of the Work otherwise complies with
432
+ the conditions stated in this License.
433
+
434
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
435
+ any Contribution intentionally submitted for inclusion in the Work
436
+ by You to the Licensor shall be under the terms and conditions of
437
+ this License, without any additional terms or conditions.
438
+ Notwithstanding the above, nothing herein shall supersede or modify
439
+ the terms of any separate license agreement you may have executed
440
+ with Licensor regarding such Contributions.
441
+
442
+ 6. Trademarks. This License does not grant permission to use the trade
443
+ names, trademarks, service marks, or product names of the Licensor,
444
+ except as required for reasonable and customary use in describing the
445
+ origin of the Work and reproducing the content of the NOTICE file.
446
+
447
+ 7. Disclaimer of Warranty. Unless required by applicable law or
448
+ agreed to in writing, Licensor provides the Work (and each
449
+ Contributor provides its Contributions) on an "AS IS" BASIS,
450
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
451
+ implied, including, without limitation, any warranties or conditions
452
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
453
+ PARTICULAR PURPOSE. You are solely responsible for determining the
454
+ appropriateness of using or redistributing the Work and assume any
455
+ risks associated with Your exercise of permissions under this License.
456
+
457
+ 8. Limitation of Liability. In no event and under no legal theory,
458
+ whether in tort (including negligence), contract, or otherwise,
459
+ unless required by applicable law (such as deliberate and grossly
460
+ negligent acts) or agreed to in writing, shall any Contributor be
461
+ liable to You for damages, including any direct, indirect, special,
462
+ incidental, or consequential damages of any character arising as a
463
+ result of this License or out of the use or inability to use the
464
+ Work (including but not limited to damages for loss of goodwill,
465
+ work stoppage, computer failure or malfunction, or any and all
466
+ other commercial damages or losses), even if such Contributor
467
+ has been advised of the possibility of such damages.
468
+
469
+ 9. Accepting Warranty or Additional Liability. While redistributing
470
+ the Work or Derivative Works thereof, You may choose to offer,
471
+ and charge a fee for, acceptance of support, warranty, indemnity,
472
+ or other liability obligations and/or rights consistent with this
473
+ License. However, in accepting such obligations, You may act only
474
+ on Your own behalf and on Your sole responsibility, not on behalf
475
+ of any other Contributor, and only if You agree to indemnify,
476
+ defend, and hold each Contributor harmless for any liability
477
+ incurred by, or claims asserted against, such Contributor by reason
478
+ of your accepting any such warranty or additional liability.
479
+
480
+ END OF TERMS AND CONDITIONS
481
+
482
+
298
483
  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
299
484
 
300
485
  icu4c
@@ -921,7 +1106,7 @@ to the following restrictions:
921
1106
 
922
1107
  libjpeg-turbo
923
1108
 
924
- Version 2.1.2
1109
+ Version 2.1.5.1
925
1110
  (https://github.com/libjpeg-turbo/libjpeg-turbo)
926
1111
 
927
1112
  libjpeg-turbo Licenses
@@ -1017,7 +1202,7 @@ best of our understanding.
1017
1202
  The Modified (3-clause) BSD License
1018
1203
  ===================================
1019
1204
 
1020
- Copyright (C)2009-2021 D. R. Commander. All Rights Reserved.<br>
1205
+ Copyright (C)2009-2023 D. R. Commander. All Rights Reserved.<br>
1021
1206
  Copyright (C)2015 Viktor Szathmáry. All Rights Reserved.
1022
1207
 
1023
1208
  Redistribution and use in source and binary forms, with or without
@@ -1062,7 +1247,7 @@ that were granted to the IJG for code derived from their software.
1062
1247
 
1063
1248
  libpng
1064
1249
 
1065
- Version 1.6.36
1250
+ Version 1.6.40
1066
1251
  (https://github.com/glennrp/libpng)
1067
1252
 
1068
1253
  COPYRIGHT NOTICE, DISCLAIMER, and LICENSE
@@ -1071,8 +1256,8 @@ COPYRIGHT NOTICE, DISCLAIMER, and LICENSE
1071
1256
  PNG Reference Library License version 2
1072
1257
  ---------------------------------------
1073
1258
 
1074
- * Copyright (c) 1995-2018 The PNG Reference Library Authors.
1075
- * Copyright (c) 2018 Cosmin Truta.
1259
+ * Copyright (c) 1995-2023 The PNG Reference Library Authors.
1260
+ * Copyright (c) 2018-2023 Cosmin Truta.
1076
1261
  * Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson.
1077
1262
  * Copyright (c) 1996-1997 Andreas Dilger.
1078
1263
  * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
@@ -1080,7 +1265,7 @@ PNG Reference Library License version 2
1080
1265
  The software is supplied "as is", without warranty of any kind,
1081
1266
  express or implied, including, without limitation, the warranties
1082
1267
  of merchantability, fitness for a particular purpose, title, and
1083
- non-infringement. In no even shall the Copyright owners, or
1268
+ non-infringement. In no event shall the Copyright owners, or
1084
1269
  anyone distributing the software, be liable for any damages or
1085
1270
  other liability, whether in contract, tort or otherwise, arising
1086
1271
  from, out of, or in connection with the software, or the use or
@@ -1106,7 +1291,7 @@ subject to the following restrictions:
1106
1291
  PNG Reference Library License version 1 (for libpng 0.5 through 1.6.35)
1107
1292
  -----------------------------------------------------------------------
1108
1293
 
1109
- libpng versions 1.0.7, July 1, 2000 through 1.6.35, July 15, 2018 are
1294
+ libpng versions 1.0.7, July 1, 2000, through 1.6.35, July 15, 2018 are
1110
1295
  Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson, are
1111
1296
  derived from libpng-1.0.6, and are distributed according to the same
1112
1297
  disclaimer and license as libpng-1.0.6 with the following individuals
@@ -1205,11 +1390,13 @@ be appreciated.
1205
1390
 
1206
1391
  libtiff
1207
1392
 
1208
- Version 4.2.0
1393
+ Version 4.6.0
1209
1394
  (https://libtiff.gitlab.io/libtiff/)
1210
1395
 
1211
- Copyright (c) 1988-1997 Sam Leffler
1212
- Copyright (c) 1991-1997 Silicon Graphics, Inc.
1396
+ # LibTIFF license
1397
+
1398
+ Copyright © 1988-1997 Sam Leffler\
1399
+ Copyright © 1991-1997 Silicon Graphics, Inc.
1213
1400
 
1214
1401
  Permission to use, copy, modify, distribute, and sell this software and
1215
1402
  its documentation for any purpose is hereby granted without fee, provided
@@ -2306,6 +2493,37 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2306
2493
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2307
2494
 
2308
2495
 
2496
+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2497
+
2498
+ zlib
2499
+
2500
+ Version 1.3.1
2501
+ (https://github.com/madler/zlib)
2502
+
2503
+ Copyright notice:
2504
+
2505
+ (C) 1995-2022 Jean-loup Gailly and Mark Adler
2506
+
2507
+ This software is provided 'as-is', without any express or implied
2508
+ warranty. In no event will the authors be held liable for any damages
2509
+ arising from the use of this software.
2510
+
2511
+ Permission is granted to anyone to use this software for any purpose,
2512
+ including commercial applications, and to alter it and redistribute it
2513
+ freely, subject to the following restrictions:
2514
+
2515
+ 1. The origin of this software must not be misrepresented; you must not
2516
+ claim that you wrote the original software. If you use this software
2517
+ in a product, an acknowledgment in the product documentation would be
2518
+ appreciated but is not required.
2519
+ 2. Altered source versions must be plainly marked as such, and must not be
2520
+ misrepresented as being the original software.
2521
+ 3. This notice may not be removed or altered from any source distribution.
2522
+
2523
+ Jean-loup Gailly Mark Adler
2524
+ jloup@gzip.org madler@alumni.caltech.edu
2525
+
2526
+
2309
2527
  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2310
2528
 
2311
2529
  ZXing-C++, C++ port of ZXing
@@ -2519,7 +2737,6 @@ Version 1.1.0
2519
2737
 
2520
2738
 
2521
2739
 
2522
-
2523
2740
  G8Tesseract
2524
2741
  Copyright @ 2014 Daniele Galiotto. https://github.com/gali8/Tesseract-OCR-iOS
2525
2742
  This library is distributed under the terms of a MIT License (https://github.com/gali8/Tesseract-OCR-iOS/blob/master/LICENSE.md).
@@ -2532,7 +2749,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
2532
2749
 
2533
2750
  ------------------------------------------------------------------------------------------------------------------------
2534
2751
 
2535
- Open Source libraries used in the Scanbot Barcode Scanner SDK for Android version 5.1.2
2752
+ Open Source libraries used in the Scanbot Barcode Scanner SDK for Android version 6.1.0
2536
2753
  CWAC-Camera
2537
2754
 
2538
2755
  Version 0.6.42
@@ -2555,9 +2772,30 @@ limitations under the License.
2555
2772
 
2556
2773
 
2557
2774
 
2775
+ Coil image loading
2776
+
2777
+ Version 2.3.0
2778
+ (https://coil-kt.github.io/coil/)
2779
+
2780
+ Copyright 2024 Coil Contributors
2781
+
2782
+ Licensed under the Apache License, Version 2.0 (the "License");
2783
+ you may not use this file except in compliance with the License.
2784
+ You may obtain a copy of the License at
2785
+
2786
+ https://www.apache.org/licenses/LICENSE-2.0
2787
+
2788
+ Unless required by applicable law or agreed to in writing, software
2789
+ distributed under the License is distributed on an "AS IS" BASIS,
2790
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2791
+ See the License for the specific language governing permissions and
2792
+ limitations under the License.
2793
+
2794
+
2795
+
2558
2796
  Kotlin Standard Library
2559
2797
 
2560
- Version 1.7.10
2798
+ Version 1.9.23
2561
2799
  (https://github.com/JetBrains/kotlin)
2562
2800
 
2563
2801
  Copyright 2010-2018 JetBrains s.r.o.
@@ -2614,7 +2852,7 @@ limitations under the License.
2614
2852
 
2615
2853
  Dagger
2616
2854
 
2617
- Version 2.45
2855
+ Version 2.50
2618
2856
  (https://github.com/google/dagger)
2619
2857
 
2620
2858
  Copyright 2012 The Dagger Authors
@@ -2959,6 +3197,191 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2959
3197
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2960
3198
 
2961
3199
 
3200
+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3201
+
3202
+ gs1-syntax-dictionary
3203
+
3204
+ Version 2023-12-11
3205
+ (https://github.com/gs1/gs1-syntax-dictionary)
3206
+
3207
+ Apache License
3208
+ Version 2.0, January 2004
3209
+ http://www.apache.org/licenses/
3210
+
3211
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
3212
+
3213
+ 1. Definitions.
3214
+
3215
+ "License" shall mean the terms and conditions for use, reproduction,
3216
+ and distribution as defined by Sections 1 through 9 of this document.
3217
+
3218
+ "Licensor" shall mean the copyright owner or entity authorized by
3219
+ the copyright owner that is granting the License.
3220
+
3221
+ "Legal Entity" shall mean the union of the acting entity and all
3222
+ other entities that control, are controlled by, or are under common
3223
+ control with that entity. For the purposes of this definition,
3224
+ "control" means (i) the power, direct or indirect, to cause the
3225
+ direction or management of such entity, whether by contract or
3226
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
3227
+ outstanding shares, or (iii) beneficial ownership of such entity.
3228
+
3229
+ "You" (or "Your") shall mean an individual or Legal Entity
3230
+ exercising permissions granted by this License.
3231
+
3232
+ "Source" form shall mean the preferred form for making modifications,
3233
+ including but not limited to software source code, documentation
3234
+ source, and configuration files.
3235
+
3236
+ "Object" form shall mean any form resulting from mechanical
3237
+ transformation or translation of a Source form, including but
3238
+ not limited to compiled object code, generated documentation,
3239
+ and conversions to other media types.
3240
+
3241
+ "Work" shall mean the work of authorship, whether in Source or
3242
+ Object form, made available under the License, as indicated by a
3243
+ copyright notice that is included in or attached to the work
3244
+ (an example is provided in the Appendix below).
3245
+
3246
+ "Derivative Works" shall mean any work, whether in Source or Object
3247
+ form, that is based on (or derived from) the Work and for which the
3248
+ editorial revisions, annotations, elaborations, or other modifications
3249
+ represent, as a whole, an original work of authorship. For the purposes
3250
+ of this License, Derivative Works shall not include works that remain
3251
+ separable from, or merely link (or bind by name) to the interfaces of,
3252
+ the Work and Derivative Works thereof.
3253
+
3254
+ "Contribution" shall mean any work of authorship, including
3255
+ the original version of the Work and any modifications or additions
3256
+ to that Work or Derivative Works thereof, that is intentionally
3257
+ submitted to Licensor for inclusion in the Work by the copyright owner
3258
+ or by an individual or Legal Entity authorized to submit on behalf of
3259
+ the copyright owner. For the purposes of this definition, "submitted"
3260
+ means any form of electronic, verbal, or written communication sent
3261
+ to the Licensor or its representatives, including but not limited to
3262
+ communication on electronic mailing lists, source code control systems,
3263
+ and issue tracking systems that are managed by, or on behalf of, the
3264
+ Licensor for the purpose of discussing and improving the Work, but
3265
+ excluding communication that is conspicuously marked or otherwise
3266
+ designated in writing by the copyright owner as "Not a Contribution."
3267
+
3268
+ "Contributor" shall mean Licensor and any individual or Legal Entity
3269
+ on behalf of whom a Contribution has been received by Licensor and
3270
+ subsequently incorporated within the Work.
3271
+
3272
+ 2. Grant of Copyright License. Subject to the terms and conditions of
3273
+ this License, each Contributor hereby grants to You a perpetual,
3274
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
3275
+ copyright license to reproduce, prepare Derivative Works of,
3276
+ publicly display, publicly perform, sublicense, and distribute the
3277
+ Work and such Derivative Works in Source or Object form.
3278
+
3279
+ 3. Grant of Patent License. Subject to the terms and conditions of
3280
+ this License, each Contributor hereby grants to You a perpetual,
3281
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
3282
+ (except as stated in this section) patent license to make, have made,
3283
+ use, offer to sell, sell, import, and otherwise transfer the Work,
3284
+ where such license applies only to those patent claims licensable
3285
+ by such Contributor that are necessarily infringed by their
3286
+ Contribution(s) alone or by combination of their Contribution(s)
3287
+ with the Work to which such Contribution(s) was submitted. If You
3288
+ institute patent litigation against any entity (including a
3289
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
3290
+ or a Contribution incorporated within the Work constitutes direct
3291
+ or contributory patent infringement, then any patent licenses
3292
+ granted to You under this License for that Work shall terminate
3293
+ as of the date such litigation is filed.
3294
+
3295
+ 4. Redistribution. You may reproduce and distribute copies of the
3296
+ Work or Derivative Works thereof in any medium, with or without
3297
+ modifications, and in Source or Object form, provided that You
3298
+ meet the following conditions:
3299
+
3300
+ (a) You must give any other recipients of the Work or
3301
+ Derivative Works a copy of this License; and
3302
+
3303
+ (b) You must cause any modified files to carry prominent notices
3304
+ stating that You changed the files; and
3305
+
3306
+ (c) You must retain, in the Source form of any Derivative Works
3307
+ that You distribute, all copyright, patent, trademark, and
3308
+ attribution notices from the Source form of the Work,
3309
+ excluding those notices that do not pertain to any part of
3310
+ the Derivative Works; and
3311
+
3312
+ (d) If the Work includes a "NOTICE" text file as part of its
3313
+ distribution, then any Derivative Works that You distribute must
3314
+ include a readable copy of the attribution notices contained
3315
+ within such NOTICE file, excluding those notices that do not
3316
+ pertain to any part of the Derivative Works, in at least one
3317
+ of the following places: within a NOTICE text file distributed
3318
+ as part of the Derivative Works; within the Source form or
3319
+ documentation, if provided along with the Derivative Works; or,
3320
+ within a display generated by the Derivative Works, if and
3321
+ wherever such third-party notices normally appear. The contents
3322
+ of the NOTICE file are for informational purposes only and
3323
+ do not modify the License. You may add Your own attribution
3324
+ notices within Derivative Works that You distribute, alongside
3325
+ or as an addendum to the NOTICE text from the Work, provided
3326
+ that such additional attribution notices cannot be construed
3327
+ as modifying the License.
3328
+
3329
+ You may add Your own copyright statement to Your modifications and
3330
+ may provide additional or different license terms and conditions
3331
+ for use, reproduction, or distribution of Your modifications, or
3332
+ for any such Derivative Works as a whole, provided Your use,
3333
+ reproduction, and distribution of the Work otherwise complies with
3334
+ the conditions stated in this License.
3335
+
3336
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
3337
+ any Contribution intentionally submitted for inclusion in the Work
3338
+ by You to the Licensor shall be under the terms and conditions of
3339
+ this License, without any additional terms or conditions.
3340
+ Notwithstanding the above, nothing herein shall supersede or modify
3341
+ the terms of any separate license agreement you may have executed
3342
+ with Licensor regarding such Contributions.
3343
+
3344
+ 6. Trademarks. This License does not grant permission to use the trade
3345
+ names, trademarks, service marks, or product names of the Licensor,
3346
+ except as required for reasonable and customary use in describing the
3347
+ origin of the Work and reproducing the content of the NOTICE file.
3348
+
3349
+ 7. Disclaimer of Warranty. Unless required by applicable law or
3350
+ agreed to in writing, Licensor provides the Work (and each
3351
+ Contributor provides its Contributions) on an "AS IS" BASIS,
3352
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
3353
+ implied, including, without limitation, any warranties or conditions
3354
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
3355
+ PARTICULAR PURPOSE. You are solely responsible for determining the
3356
+ appropriateness of using or redistributing the Work and assume any
3357
+ risks associated with Your exercise of permissions under this License.
3358
+
3359
+ 8. Limitation of Liability. In no event and under no legal theory,
3360
+ whether in tort (including negligence), contract, or otherwise,
3361
+ unless required by applicable law (such as deliberate and grossly
3362
+ negligent acts) or agreed to in writing, shall any Contributor be
3363
+ liable to You for damages, including any direct, indirect, special,
3364
+ incidental, or consequential damages of any character arising as a
3365
+ result of this License or out of the use or inability to use the
3366
+ Work (including but not limited to damages for loss of goodwill,
3367
+ work stoppage, computer failure or malfunction, or any and all
3368
+ other commercial damages or losses), even if such Contributor
3369
+ has been advised of the possibility of such damages.
3370
+
3371
+ 9. Accepting Warranty or Additional Liability. While redistributing
3372
+ the Work or Derivative Works thereof, You may choose to offer,
3373
+ and charge a fee for, acceptance of support, warranty, indemnity,
3374
+ or other liability obligations and/or rights consistent with this
3375
+ License. However, in accepting such obligations, You may act only
3376
+ on Your own behalf and on Your sole responsibility, not on behalf
3377
+ of any other Contributor, and only if You agree to indemnify,
3378
+ defend, and hold each Contributor harmless for any liability
3379
+ incurred by, or claims asserted against, such Contributor by reason
3380
+ of your accepting any such warranty or additional liability.
3381
+
3382
+ END OF TERMS AND CONDITIONS
3383
+
3384
+
2962
3385
  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2963
3386
 
2964
3387
  icu4c
@@ -40,6 +40,6 @@ Pod::Spec.new do |s|
40
40
  end
41
41
  end
42
42
 
43
- s.dependency "ScanbotBarcodeSDKWrapper", '5.1.4.0'
43
+ s.dependency "ScanbotBarcodeSDKWrapper", '6.1.1.2'
44
44
  s.ios.vendored_frameworks = 'ScanbotBarcodeSDKWrapper.framework'
45
45
  end
@@ -8,7 +8,7 @@ buildscript {
8
8
  }
9
9
 
10
10
  dependencies {
11
- classpath "com.android.tools.build:gradle:7.4.2"
11
+ classpath "com.android.tools.build:gradle:8.2.0"
12
12
  // noinspection DifferentKotlinGradleVersion
13
13
  classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
14
14
  }
@@ -1,6 +1,6 @@
1
- ScanbotBarcodeSdk_sharedLibsVersion=5.1.2.1
2
- ScanbotBarcodeSdk_kotlinVersion=1.8.22
1
+ ScanbotBarcodeSdk_sharedLibsVersion=6.1.0.0
2
+ ScanbotBarcodeSdk_kotlinVersion=1.9.0
3
3
  ScanbotBarcodeSdk_minSdkVersion=21
4
- ScanbotBarcodeSdk_targetSdkVersion=33
5
- ScanbotBarcodeSdk_compileSdkVersion=33
4
+ ScanbotBarcodeSdk_targetSdkVersion=34
5
+ ScanbotBarcodeSdk_compileSdkVersion=34
6
6
  ScanbotBarcodeSdk_ndkversion=25.2.9519653