react-native-scanbot-barcode-scanner-sdk 3.2.0-beta2 → 3.2.0-beta5

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.
@@ -25,6 +25,8 @@ static inline SBSDKBarcodeType* barcodeTypeFromString(NSString* string) {
25
25
  if ([string isEqualToString:@"UPC_A"]) return SBSDKBarcodeTypeUPCA;
26
26
  if ([string isEqualToString:@"UPC_E"]) return SBSDKBarcodeTypeUPCE;
27
27
  if ([string isEqualToString:@"MSI_PLESSEY"]) return SBSDKBarcodeTypeMSIPlessey;
28
+ if ([string isEqualToString:@"RSS_14"]) return SBSDKBarcodeTypeRSS14;
29
+ if ([string isEqualToString:@"RSS_EXPANDED"]) return SBSDKBarcodeTypeRSSExpanded;
28
30
  return nil;
29
31
  }
30
32
 
@@ -37,7 +39,7 @@ static inline SBSDKBarcodeDocumentType* barcodeDocumentTypeFromString(NSString*
37
39
  if ([string isEqualToString:@"DE_MEDICAL_PLAN"]) return SBSDKBarcodeDocumentTypeMedicalPlan;
38
40
  if ([string isEqualToString:@"VCARD"]) return SBSDKBarcodeDocumentTypeVCard;
39
41
  if ([string isEqualToString:@"SWISS_QR"]) return SBSDKBarcodeDocumentTypeSwissQR;
40
- if ([string isEqualToString:@"GS1"]) return SBSDKBarcodeDocumentTyeGS1;
42
+ if ([string isEqualToString:@"GS1"]) return SBSDKBarcodeDocumentTypeGS1;
41
43
  return nil;
42
44
  }
43
45
 
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-beta2",
5
- "description": "React Native plugin for the Scanbot Barcode Scanner SDK on Android and iOS",
4
+ "version": "3.2.0-beta5",
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",