Skip to content

Commit 553394b

Browse files
authored
Merge pull request #19 from dynamsoft-docs/preview
Preview
2 parents 8ee8585 + 7735f73 commit 553394b

7 files changed

Lines changed: 7 additions & 20 deletions

File tree

barcode-reader/general/check-current-version.md

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: Step-by-step guide to identifying the current version of the Dynams
66
needAutoGenerateSidebar: false
77
---
88

9-
# How to check the version of the JS SDK I am currently using?
9+
# How to check the version of the SDK I am currently using?
1010

1111
There are multiple ways to check the version currently being used -
1212

@@ -57,16 +57,5 @@ const char* version = CCaptureVisionRouterModule::GetVersion();
5757
```
5858
>
5959
```csharp
60-
using (CaptureVisionRouter cvr = new CaptureVisionRouter())
61-
{
62-
SimplifiedCaptureVisionSettings settings;
63-
string errorMsg;
64-
// Obtain current runtime settings of `CCaptureVisionRouter` instance.
65-
cvr.GetSimplifiedSettings(PresetTemplate.PT_READ_BARCODES, out settings);
66-
// Specify the barcode formats by enumeration values.
67-
// Use "|" to enable multiple barcode formats at one time.
68-
settings.barcodeSettings.barcodeFormatIds = (ulong)(EnumBarcodeFormat.BF_QR_CODE | EnumBarcodeFormat.BF_ONED);
69-
// Update the settings.
70-
cvr.UpdateSettings(PresetTemplate.PT_READ_BARCODES, settings, out errorMsg);
71-
}
60+
string version = CaptureVisionRouterModule.GetVersion();
7261
```

barcode-reader/general/scan-us-drivers-license.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ needAutoGenerateSidebar: false
1111
The SDK can indeed scan driver license barcodes and extract all the information that is encoded in the barcode. The best resources to reference in order to do this are the samples available:
1212

1313
- [JavaScript edition (most popular use case)](https://github.com/Dynamsoft/barcode-reader-javascript-samples/tree/main/scenarios/read-a-drivers-license)
14-
- [iOS sample](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/v11.2.1000/ios/FoundationalAPISamples/DriversLicenseScanner)
15-
- [Android sample](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/v11.2.1000/android/FoundationalAPISamples/DriversLicenseScanner)
14+
- [iOS sample](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/main/ios/FoundationalAPISamples/ReadDriversLicense)
15+
- [Android sample](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/main/android/FoundationalAPISamples/ReadDriversLicense)
File renamed without changes.

barcode-reader/mobile/capabilities/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,4 @@ noTitleIndex: true
88
---
99

1010
- [Architecture armv7 Error](armv7-architecture-error.html)
11-
- [Bitcode Support](bitcode-support.html)
1211
- [Minimum System Requirements](min-system-requirements.html)

barcode-reader/mobile/capabilities/min-system-requirements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Dynamsoft Barcode Reader (DBR) supports a variety of Android and iOS environment
2828

2929
| **Component** | **Requirement** |
3030
| ----------------------------- | ----------------------------------------------- |
31-
| **Supported OS** | iOS 11 or higher<br>(iOS 13+ recommended) |
31+
| **Supported OS** | iOS 13+ |
3232
| **Supported ABI** | `arm64`, `x86_64` (for simulator use) |
3333
| **Development Environment** | Xcode 13 and above<br>(Xcode 14.1+ recommended) |
3434
| **Simulator Support** | Yes — must use `.xcframework` |

barcode-reader/mobile/configuration/drivers-license-extraction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Yes, you can extract driver’s license information from a PDF417 barcode using
1212

1313
Check out the sample project on GitHub to see how to decode the PDF417 barcode and parse the data:
1414

15-
👉 [DriversLicenseScanner Sample (Android)](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/main/android/FoundationalAPISamples/DriversLicenseScanner){:target="\_blank"}
16-
👉 [DriversLicenseScanner Sample (iOS)](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/main/ios/FoundationalAPISamples/DriversLicenseScanner){:target="\_blank"}
15+
👉 [DriversLicenseScanner Sample (Android)](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/main/android/FoundationalAPISamples/ReadDriversLicense){:target="\_blank"}
16+
👉 [DriversLicenseScanner Sample (iOS)](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/main/ios/FoundationalAPISamples/ReadDriversLicense){:target="\_blank"}
1717

1818
> These samples include the `DynamsoftCodeParser` library, which is used to extract structured information (such as name, address, license number, etc.) from the raw barcode decoding result.
1919
>

barcode-reader/mobile/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ Welcome to the FAQ for Dynamsoft Barcode Reader on mobile platforms. Browse the
1414
## Capabilities & Requirements
1515

1616
- [Minimum System Requirements](capabilities/min-system-requirements.md)
17-
- [iOS - Bitcode Support](capabilities/bitcode-support.html)
1817
- [iOS - ARMv7 Architecture Error](capabilities/armv7-architecture-error.html)
1918

2019
## Configuration

0 commit comments

Comments
 (0)