react-native-scanbot-barcode-scanner-sdk 3.2.0-beta3 → 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/LICENSE +8 -3
- package/Libraries.txt +3584 -405
- package/README.md +39 -6
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -1,10 +1,43 @@
|
|
|
1
1
|
# Scanbot Barcode Scanner SDK for React Native
|
|
2
2
|
|
|
3
|
-
|
|
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
|
-
|
|
6
|
-
|
|
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
|
-
|
|
9
|
-
|
|
10
|
-
|
|
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.
|
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-
|
|
5
|
-
"description": "
|
|
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
|
|
26
|
+
"qr-code",
|
|
25
27
|
"scanner",
|
|
26
|
-
"
|
|
27
|
-
"
|
|
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",
|