You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: programming/android/user-guide.md
+9-4Lines changed: 9 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,12 @@ enableLanguageSelection: true
14
14
15
15
This user guide will walk through the [ScanSingleBarcode](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/main/android/BarcodeScannerAPISamples/) sample app. When creating your own project, please use this sample as a reference. This guide uses RTU (Ready to Use) APIs which aim to elevate the UI creation process with less code and offer a more pleasant and intuitive UI for your app.
16
16
17
-
If you have higher customization requirements for the interface, you may refer to the [Foundational API Samples](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/main/android/FoundationalAPISamples/) or [Build your APP with Foundational APIs]({{ site.android }}user-guide.html) article.
17
+
> Note:
18
+
>
19
+
> This guide aims at scanning a single barcode with the `BarcodeScanner` component.
20
+
>
21
+
> - If you have requirement for scanning multiple barcodes, you may refer to the [DecodeMultipleBrcodes sample](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/main/android/FoundationalAPISamples/DecodeMultipleBarcodes).
22
+
> - If you have higher customization requirements for the interface, you may refer to the [Foundational API Samples](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/main/android/FoundationalAPISamples/) or [Build your APP with Foundational APIs]({{ site.android }}user-guide.html) article.
18
23
19
24
## Requirements
20
25
@@ -24,7 +29,7 @@ If you have higher customization requirements for the interface, you may refer t
24
29
25
30
## Add the SDK
26
31
27
-
There are two ways in which you can include the dynamsoftbarcodereaderbundle library in your app:
32
+
There are two ways in which you can include the `dynamsoftbarcodereaderbundle` library in your app:
28
33
29
34
### Option 1: Add the Library via Maven
30
35
@@ -82,7 +87,7 @@ There are two ways in which you can include the dynamsoftbarcodereaderbundle lib
82
87
> Note:
83
88
>
84
89
> You need to add the CameraX dependency to use the `DynamsoftCameraEnhancer` library.
85
-
> camerax_version 1.3.0+ is not currently compatible with the DynamsoftCameraEnhancer library.
90
+
> camerax_version 1.3.0+ is not currently compatible with the `DynamsoftCameraEnhancer` library.
86
91
87
92
4. Click **Sync Now**. After the synchronization is complete, the SDK is added to the project.
88
93
@@ -105,7 +110,7 @@ Add the SDK to your new project. Please read [Add the SDK](#add-the-sdk) section
105
110
106
111
## Step 3: Initialize the License
107
112
108
-
The first step in code configuration is to include a valid license in the BarcodeScannerConfig object, which is used when launching the scanner.
113
+
The first step in code configuration is to include a valid license in the `BarcodeScannerConfig` object, which is used when launching the scanner.
109
114
110
115
We first start with the package imports and then start implementing the MainActivity class, which starts with some simple Android UI configuration and creating the TextView that will display the results, followed by defining the license via the `setLicense` method of `BarcodeScannerConfig`.
Copy file name to clipboardExpand all lines: programming/objectivec-swift/user-guide.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,12 @@ enableLanguageSelection: true
14
14
15
15
This user guide will walk through the [ScanSingleBarcode](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/main/ios/BarcodeScannerAPISamples/) sample app. When creating your own project, please use this sample as a reference. This guide uses RTU (Ready to Use) APIs which aim to elevate the UI creation process with less code and offer a more pleasant and intuitive UI for your app.
16
16
17
-
If you have higher customization requirements for the interface, you may refer to the [Foundational API Samples](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/main/android/FoundationalAPISamples/) or [Build your APP with Foundational APIs]({{ site.oc }}foundational-guide.html) article.
17
+
> Note:
18
+
>
19
+
> This guide aims at scanning a single barcode with the `BarcodeScanner` component.
20
+
>
21
+
> - If you have requirement for scanning multiple barcodes, you may refer to the [DecodeMultipleBrcodes sample](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/main/ios/FoundationalAPISamples/DecodeMultipleBarcodes).
22
+
> - If you have higher customization requirements for the interface, you may refer to the [Foundational API Samples](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/main/ios/FoundationalAPISamples/) or [Build your APP with Foundational APIs]({{ site.oc }}foundational-guide.html) article.
18
23
19
24
## Requirements
20
25
@@ -24,7 +29,7 @@ If you have higher customization requirements for the interface, you may refer t
24
29
25
30
## Add the SDK
26
31
27
-
There are three ways in which you can include the DynamsoftBarcodeReaderBundle library in your app:
32
+
There are three ways in which you can include the `DynamsoftBarcodeReaderBundle` library in your app:
28
33
29
34
### Option 1: Add the xcframeworks via Swift Package Manager
0 commit comments