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/api-reference/barcode-scanner/barcode-scanner-config.md
+52Lines changed: 52 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,25 +33,29 @@ final class BarcodeScannerConfig
33
33
| [`setScanRegion`](#setscanregion) | Sets a scan region where only the barcodes located in the scan region can be decoded. |
34
34
| [`setTorchButtonVisible`](#settorchbuttonvisible) | Sets whether to display the torch button when scanning or not. |
35
35
| [`setBeepEnabled`](#setbeepenabled) | Sets whether to trigger a beep sound when a barcode is detected. |
36
+
| [`setVibrateEnabled`](#setvibrateenabled) | Sets whether to trigger a vibration when a barcode is detected. |
36
37
| [`setScanLaserVisible`](#setscanlaservisible) | Sets whether to display a scan laser when scanning. |
37
38
| [`setAutoZoomEnabled`](#setautozoomenabled) | Sets whether to enable the auto-zoom feature when scanning. |
38
39
| [`setCloseButtonVisible`](#setclosebuttonvisible) | Sets whether to display a button that can close the scanner page. |
39
40
| [`setMaxConsecutiveStableFramesToExit`](#setmaxconsecutivestableframestoexit) | Sets how long the library will keep scanning when there is no more barcodes to decode. |
40
41
| [`setExpectedBarcodesCount`](#setexpectedbarcodescount) | Sets the expected number of barcodes. The multiple barcodes scanning will be stopped when the `expectedBarcodesCount` is reached. |
41
42
| [`setCameraToggleButtonVisible`](#setcameratogglebuttonvisible) | Sets whether to display the camera toggle button. |
43
+
| [`setZoomFactor`](#setzoomfactor) | Sets the zoom factor. |
42
44
| [`getLicense`](#getlicense) | Returns the license key string. |
43
45
| [`getScanningMode`](#getscanningmode) | Returns the scanning mode. |
44
46
| [`getTemplateFile`](#gettemplatefile) | Returns the template with a file path or a JSON string. |
45
47
| [`isTorchButtonVisible`](#istorchbuttonvisible) | Returns whether the button is visible. |
46
48
| [`getBarcodeFormats`](#getbarcodeformats) | Returns the barcode format(s) that the library will accept. |
47
49
| [`getScanRegion`](#getscanregion) | Returns the scan region. |
48
50
| [`isBeepEnabled`](#isbeepenabled) | Returns whether the beep sound is enabled. |
51
+
| [`isVibrateEnabled`](#isvibrateenabled) | Returns whether the vibration is enabled. |
49
52
| [`isScanLaserVisible`](#isscanlaservisible) | Returns whether the scan laser is visible. |
50
53
| [`isAutoZoomEnabled`](#isautozoomenabled) | Returns whether the auto-zoom feature is enabled. |
51
54
| [`isCloseButtonVisible`](#isclosebuttonvisible) | Returns whether the close button is visible. |
52
55
| [`getMaxConsecutiveStableFramesToExit`](#getmaxconsecutivestableframestoexit) | Returns the maximum number of consecutive stable frames to exit. |
53
56
| [`getExpectedBarcodesCount`](#getexpectedbarcodescount) | Returns the expected number of barcodes. |
54
57
| [`isCameraToggleButtonVisible`](#iscameratogglebuttonvisible) | Returns whether the camera toggle button is visible. |
58
+
| [`getZoomFactor`](#getzoomfactor) | Gets the zoom factor. |
> - DynamsoftCameraEnhancer library is used for camera capture in this guide below. If you use the Android CameraX SDK for camera capture, check [DecodeWithCameraX sample](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/main/android/FoundationalAPISamples/DecodeWithCameraX){:target="_blank"} on how to add barcode scanning to your app.
Copy file name to clipboardExpand all lines: programming/android/release-notes/android-11.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,20 @@ noTitleIndex: true
10
10
11
11
# Release Notes for Android SDK - 11.x
12
12
13
+
## 11.0.5000 (07/29/2025)
14
+
15
+
### New
16
+
17
+
-**Supported 16 KB page sizes**.
18
+
19
+
### Changed
20
+
21
+
-**License Validation Behavior**: Instead of stopping execution immediately on an invalid license module, the library now continues processing and returns results from modules with valid licenses. An error is still reported to indicate the license issue.
22
+
23
+
### Fixed
24
+
25
+
- Fixed various minor bugs and improved overall stability.
0 commit comments