Skip to content

Commit 4b98174

Browse files
update to internal commit d7870677
1 parent da25ff2 commit 4b98174

File tree

9 files changed

+38
-14
lines changed

9 files changed

+38
-14
lines changed

programming/android/foundational-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,13 @@ There are two ways to add the libraries into your project - **Manually** and **M
7070
>1.
7171
```groovy
7272
dependencies {
73-
implementation 'com.dynamsoft:barcodereaderbundle:11.2.1000'
73+
implementation 'com.dynamsoft:barcodereaderbundle:11.2.3000'
7474
}
7575
```
7676
2.
7777
```kotlin
7878
dependencies {
79-
implementation("com.dynamsoft:barcodereaderbundle:11.2.1000")
79+
implementation("com.dynamsoft:barcodereaderbundle:11.2.3000")
8080
}
8181
```
8282

programming/android/release-notes/android-11.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@ noTitleIndex: true
1010

1111
# Release Notes for Android SDK - 11.x
1212

13+
## 11.2.3000 (11/05/2025)
14+
15+
### Fixed
16+
17+
- Resolved an issue where `CaptureVisionRouter.startCapturing` could take longer than expected to complete.
18+
- Fixed an issue where `initLicense` could take longer than expected to complete.
19+
- Fixed an issue where the app could crash when a `CameraView` instance was created using `new CameraView()`.
20+
1321
## 11.2.1000 (10/16/2025)
1422

1523
### 🎉Milestone Release

programming/android/release-notes/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ permalink: /programming/android/release-notes/
1010

1111
# Dynamsoft Barcode Reader Android SDK - Release Notes
1212

13+
- [11.2.3000 (11/05/2025)]({{ site.android_release_notes }}android-11.html#1123000-11052025)
1314
- [11.2.1000 (10/16/2025)]({{ site.android_release_notes }}android-11.html#1121000-10162025)
1415
- [11.0.5000 (07/29/2025)]({{ site.android_release_notes }}android-11.html#1105000-07292025)
1516
- [11.0.3000 (05/15/2025)]({{ site.android_release_notes }}android-11.html#1103000-05152025)

programming/android/user-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,13 @@ There are two ways in which you can include the `dynamsoftbarcodereaderbundle` l
7676
>1.
7777
```groovy
7878
dependencies {
79-
implementation 'com.dynamsoft:barcodereaderbundle:11.2.1000'
79+
implementation 'com.dynamsoft:barcodereaderbundle:11.2.3000'
8080
}
8181
```
8282
2.
8383
```kotlin
8484
dependencies {
85-
implementation("com.dynamsoft:barcodereaderbundle:11.2.1000")
85+
implementation("com.dynamsoft:barcodereaderbundle:11.2.3000")
8686
}
8787
```
8888

programming/objectivec-swift/api-reference/auxiliary-iPDF417Details.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@ The codewords of the PDF417 barcode.
6868
>
6969
>1.
7070
```objc
71-
@property (nonatomic, readonly, retain) NSData *codewords;
71+
@property (nonatomic, readonly, copy, nullable) NSArray<NSNumber *> *codewords;
7272
```
7373
2.
7474
```swift
75-
var codewords: Data { get }
75+
var codewords: [NSNumber]? { get }
7676
```
7777

7878
### columns
@@ -119,11 +119,11 @@ Indicates whether the left row indicator of the PDF417 code exists. If the value
119119
>
120120
>1.
121121
```objc
122-
@property(nonatomic, assign, readonly) NSInteger hasLeftRowIndicator;
122+
@property(nonatomic, assign, readonly) BOOL hasLeftRowIndicator;
123123
```
124124
2.
125125
```swift
126-
var hasLeftRowIndicator: Int { get }
126+
var hasLeftRowIndicator: Bool { get }
127127
```
128128

129129
### hasRightRowIndicator
@@ -136,9 +136,9 @@ Indicates whether the right row indicator of the PDF417 code exists. If the valu
136136
>
137137
>1.
138138
```objc
139-
@property(nonatomic, assign, readonly) NSInteger hasRightRowIndicator;
139+
@property(nonatomic, assign, readonly) BOOL hasRightRowIndicator;
140140
```
141141
2.
142142
```swift
143-
var hasRightRowIndicator: Int { get }
143+
var hasRightRowIndicator: Bool { get }
144144
```

programming/objectivec-swift/foundational-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ There are three ways to add the SDK into your project - **Manually**, via **Coco
2828

2929
2. In the top-right section of the window, search "https://github.com/Dynamsoft/barcode-reader-spm"
3030

31-
3. Select `barcode-reader-spm`, choose `Exact version`, enter **11.2.1000**, then click **Add Package**.
31+
3. Select `barcode-reader-spm`, choose `Exact version`, enter **11.2.3000**, then click **Add Package**.
3232

3333
4. Check all the **xcframeworks** and add.
3434

@@ -40,7 +40,7 @@ There are three ways to add the SDK into your project - **Manually**, via **Coco
4040
target 'HelloWorld' do
4141
use_frameworks!
4242

43-
pod 'DynamsoftBarcodeReaderBundle','11.2.1000'
43+
pod 'DynamsoftBarcodeReaderBundle','11.2.3000'
4444

4545
end
4646
```

programming/objectivec-swift/release-notes/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ permalink: /programming/objectivec-swift/release-notes/
1010

1111
# Dynamsoft Barcode Reader iOS SDK - Release Notes
1212

13+
- [11.2.3000 (11/05/2025)]({{ site.oc_release_notes }}ios-11.html#1123000-11052025)
1314
- [11.2.1000 (10/16/2025)]({{ site.oc_release_notes }}ios-11.html#1121000-10162025)
1415
- [11.0.5200 (08/18/2025)]({{ site.oc_release_notes }}ios-11.html#1105200-08182025)
1516
- [11.0.5100 (08/05/2025)]({{ site.oc_release_notes }}ios-11.html#1105100-08052025)

programming/objectivec-swift/release-notes/ios-11.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,20 @@ noTitleIndex: true
1010

1111
# Release Notes for iOS SDK - 11.x
1212

13+
## 11.2.3000 (11/05/2025)
14+
15+
### Fixed
16+
17+
- Resolved an issue where `CaptureVisionRouter.startCapturing` could take longer than expected to complete.
18+
- Fixed a performance issue that caused slower continuous decoding when using an online license key.
19+
20+
### Changed
21+
22+
- Updated the data types of the following properties in [`DSPDF417Details`]({{ site.dbr_ios_api }}auxiliary-iPDF417Details.html):
23+
- [`errorCorrectionLevel`]({{ site.dbr_ios_api }}auxiliary-iPDF417Details.html#errorcorrectionlevel): from `NSData` to `NSArray<NSNumber>`.
24+
- [`hasLeftRowIndicator`]({{ site.dbr_ios_api }}auxiliary-iPDF417Details.html#hasleftrowindicator): from `NSInteger` to `BOOL`.
25+
- [`hasRightRowIndicator`]({{ site.dbr_ios_api }}auxiliary-iPDF417Details.html#hasrightrowindicator): from `NSInteger` to `BOOL`.
26+
1327
## 11.2.1000 (10/16/2025)
1428

1529
### 🎉Milestone Release

programming/objectivec-swift/user-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ There are three ways in which you can include the `DynamsoftBarcodeReaderBundle`
3535

3636
2. In the top-right section of the window, search "https://github.com/Dynamsoft/barcode-reader-spm"
3737

38-
3. Select `barcode-reader-spm`, choose `Exact version`, enter **11.2.1000**, then click **Add Package**.
38+
3. Select `barcode-reader-spm`, choose `Exact version`, enter **11.2.3000**, then click **Add Package**.
3939

4040
4. Check all the **xcframeworks** and add.
4141

@@ -47,7 +47,7 @@ There are three ways in which you can include the `DynamsoftBarcodeReaderBundle`
4747
target 'ScanSingleBarcode' do
4848
use_frameworks!
4949

50-
pod 'DynamsoftBarcodeReaderBundle','11.2.1000'
50+
pod 'DynamsoftBarcodeReaderBundle','11.2.3000'
5151

5252
end
5353
```

0 commit comments

Comments
 (0)