react-native-scanbot-barcode-scanner-sdk 3.2.0-beta1 → 3.2.0-beta4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,10 +1,43 @@
1
1
  # Scanbot Barcode Scanner SDK for React Native
2
2
 
3
- React Native plugin for the [Scanbot Barcode Scanner SDK](https://scanbot.io) on Android and iOS.
3
+ ## Add enterprise-grade barcode scanning to your app in no time
4
+ The Scanbot Barcode Scanner SDK for React Native enables you to easily implement the Scanbot
5
+ [Barcode Scanner SDK](https://scanbot.io/products/barcode-software/barcode-sdk/) for iOS and Android.
4
6
 
5
- Provides functionality for scanning 1D and 2D barcodes, like
6
- Code 39, Code 93, Code 128, Codabar, UPC-A, UPC-E, EAN-8, EAN-13, ITF, QR-Code, Aztec, PDF-417, Data Matrix, etc.
7
+ Access the available cameras on the mobile device, choose the interface, configure the settings for the barcodes,
8
+ and let your users easily scan any barcode in your application.
7
9
 
8
- For more details please see:
9
- - [documentation](https://scanbotsdk.github.io/documentation/barcode-scanner-sdk/react-native)
10
- - [example app](https://github.com/doo/scanbot-barcode-scanner-sdk-example-react-native)
10
+ Enterprise-grade scanning and parsing of a large number of different barcode symbologies with any smartphone or tablet.
11
+ Read [1D](https://scanbot.io/products/barcode-software/1d-barcode-scanner/) and
12
+ [2D barcodes](https://scanbot.io/products/barcode-software/2d-barcode-scanner/),
13
+ like [Code 39](https://scanbot.io/products/barcode-software/1d-barcode-scanner/code-39/),
14
+ [Code 93](https://scanbot.io/products/barcode-software/1d-barcode-scanner/code-93/),
15
+ [Code 128](https://scanbot.io/products/barcode-software/1d-barcode-scanner/code-128/),
16
+ [Codabar](https://scanbot.io/products/barcode-software/1d-barcode-scanner/codabar/),
17
+ [UPC-A](https://scanbot.io/products/barcode-software/1d-barcode-scanner/upc/),
18
+ [UPC-E](https://scanbot.io/products/barcode-software/1d-barcode-scanner/upc/),
19
+ [EAN-8](https://scanbot.io/products/barcode-software/1d-barcode-scanner/ean/),
20
+ [EAN-13](https://scanbot.io/products/barcode-software/1d-barcode-scanner/ean/),
21
+ [ITF](https://scanbot.io/products/barcode-software/1d-barcode-scanner/itf/),
22
+ [QR-Code](https://scanbot.io/products/barcode-software/2d-barcode-scanner/qr-code/),
23
+ [Aztec](https://scanbot.io/products/barcode-software/2d-barcode-scanner/aztec/),
24
+ [PDF-417](https://scanbot.io/products/barcode-software/2d-barcode-scanner/pdf417/),
25
+ [Data Matrix](https://scanbot.io/products/barcode-software/2d-barcode-scanner/data-matrix/), etc.
26
+
27
+ Check out the [demo](https://scanbot.io/trial/demo-app/).
28
+
29
+
30
+ ## Documentation & Example App
31
+ To integrate this plugin into your application please follow the steps in our documentation and check out our
32
+ [example app](https://github.com/doo/scanbot-barcode-scanner-sdk-example-react-native).
33
+
34
+
35
+ ## Changelog
36
+ For a detailed list of the changes included in each version, please see the
37
+ [changelog](https://docs.scanbot.io/barcode-scanner-sdk/react-native/changelog/).
38
+
39
+
40
+ ## License and Support
41
+ Scanbot SDK is a commercial product and comes with full technical support if you have any questions or need help
42
+ integrating: [sdk@scanbot.io](mailto:sdk@scanbot.io). It will run without a license for one minute per session.
43
+ Get a [free trial license](https://scanbot.io/trial/) to evaluate and integrate it into your project.
@@ -1,2 +1,2 @@
1
- #Mon Jan 31 14:23:43 CET 2022
2
- gradle.version=7.1.1
1
+ #Mon May 23 15:11:17 CEST 2022
2
+ gradle.version=6.2
package/ios/.DS_Store ADDED
Binary file
@@ -0,0 +1,14 @@
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>SchemeUserState</key>
6
+ <dict>
7
+ <key>ScanbotBarcodeSdk.xcscheme_^#shared#^_</key>
8
+ <dict>
9
+ <key>orderHint</key>
10
+ <integer>0</integer>
11
+ </dict>
12
+ </dict>
13
+ </dict>
14
+ </plist>
@@ -32,11 +32,12 @@ static inline SBSDKBarcodeDocumentType* barcodeDocumentTypeFromString(NSString*
32
32
  if ([string isEqualToString:@"AAMVA"]) return SBSDKBarcodeDocumentTypeAAMVA;
33
33
  if ([string isEqualToString:@"ID_CARD_PDF_417"]) return SBSDKBarcodeDocumentTypeIDCardPDF417;
34
34
  if ([string isEqualToString:@"SEPA"]) return SBSDKBarcodeDocumentTypeSEPA;
35
- if ([string isEqualToString:@"DISABILITY_CERTIFICATE"]) return SBSDKBarcodeDocumentTypeDisabilityCertificate;
35
+ if ([string isEqualToString:@"MEDICAL_CERTIFICATE"]) return SBSDKBarcodeDocumentTypeMedicalCertificate;
36
36
  if ([string isEqualToString:@"BOARDING_PASS"]) return SBSDKBarcodeDocumentTypeBoardingPass;
37
37
  if ([string isEqualToString:@"DE_MEDICAL_PLAN"]) return SBSDKBarcodeDocumentTypeMedicalPlan;
38
38
  if ([string isEqualToString:@"VCARD"]) return SBSDKBarcodeDocumentTypeVCard;
39
39
  if ([string isEqualToString:@"SWISS_QR"]) return SBSDKBarcodeDocumentTypeSwissQR;
40
+ if ([string isEqualToString:@"GS1"]) return SBSDKBarcodeDocumentTypeGS1;
40
41
  return nil;
41
42
  }
42
43
 
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "react-native-scanbot-barcode-scanner-sdk",
3
3
  "title": "Scanbot Barcode Scanner SDK for React Native",
4
- "version": "3.2.0-beta1",
5
- "description": "React Native plugin for the Scanbot Barcode Scanner SDK on Android and iOS",
4
+ "version": "3.2.0-beta4",
5
+ "description": "Scanbot Barcode Scanner SDK React Native Plugin for Android and iOS",
6
6
  "main": "index.js",
7
7
  "files": [
8
8
  "src/*.js",
@@ -20,22 +20,22 @@
20
20
  "LICENSE"
21
21
  ],
22
22
  "keywords": [
23
+ "scanbot",
24
+ "sdk",
23
25
  "barcode",
24
- "qr code",
26
+ "qr-code",
25
27
  "scanner",
26
- "qrcode",
27
- "sdk",
28
- "scanbot",
29
- "ios",
30
- "android",
31
- "camera",
32
- "react-native",
28
+ "scan",
29
+ "scanning",
33
30
  "1d barcode",
34
31
  "2d barcode",
35
32
  "ean",
36
33
  "upc",
37
34
  "data matrix",
38
- "pdf-417"
35
+ "pdf-417",
36
+ "react native",
37
+ "android",
38
+ "ios"
39
39
  ],
40
40
  "author": "Scanbot / doo GmbH",
41
41
  "license": "Commercial",
package/src/enum.ts CHANGED
@@ -38,11 +38,12 @@ export type BarcodeDocumentFormat =
38
38
  "AAMVA" |
39
39
  "BOARDING_PASS" |
40
40
  "DE_MEDICAL_PLAN" |
41
- "DISABILITY_CERTIFICATE" |
41
+ "MEDICAL_CERTIFICATE" |
42
42
  "ID_CARD_PDF_417" |
43
43
  "SEPA" |
44
44
  "SWISS_QR" |
45
- "VCARD";
45
+ "VCARD" |
46
+ "GS1" ;
46
47
 
47
48
  export type BarcodeFormat =
48
49
  "AZTEC" |
File without changes
File without changes
@@ -1,8 +0,0 @@
1
- ## This file must *NOT* be checked into Version Control Systems,
2
- # as it contains information specific to your local configuration.
3
- #
4
- # Location of the SDK. This is only used by Gradle.
5
- # For customization when using a Version Control System, please read the
6
- # header note.
7
- #Tue Jan 18 13:44:25 CET 2022
8
- sdk.dir=/Users/rutkaybiyik/Library/Android/sdk