Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions programming/android/foundational-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,13 @@ There are two ways to add the libraries into your project - **Manually** and **M
>1.
```groovy
dependencies {
implementation 'com.dynamsoft:barcodereaderbundle:11.4.1300'
implementation 'com.dynamsoft:barcodereaderbundle:11.4.3000'
}
```
2.
```kotlin
dependencies {
implementation("com.dynamsoft:barcodereaderbundle:11.4.1300")
implementation("com.dynamsoft:barcodereaderbundle:11.4.3000")
}
```

Expand Down
6 changes: 6 additions & 0 deletions programming/android/release-notes/android-11.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ noTitleIndex: true

# Release Notes for Android SDK - 11.x

## 11.4.3000 (07/07/2026)

### Security Updates

- Updated third-party libraries to incorporate the latest security fixes.

## 11.4.1300 (05/20/2026)

### Fixed
Expand Down
1 change: 1 addition & 0 deletions programming/android/release-notes/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ breadcrumbText: Release Notes

# Dynamsoft Barcode Reader Android SDK - Release Notes

- [11.4.3000 (07/07/2026)]({{ site.android_release_notes }}android-11.html#1143000-07072026)
- [11.4.1300 (05/20/2026)]({{ site.android_release_notes }}android-11.html#1141300-05202026)
- [11.4.1200 (04/02/2026)]({{ site.android_release_notes }}android-11.html#1141200-04022026)
- [11.4.1000 (02/05/2026)]({{ site.android_release_notes }}android-11.html#1141000-02052026)
Expand Down
4 changes: 2 additions & 2 deletions programming/android/user-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ There are two ways in which you can include the `dynamsoftbarcodereaderbundle` l
>1.
```groovy
dependencies {
implementation 'com.dynamsoft:barcodereaderbundle:11.4.1300'
implementation 'com.dynamsoft:barcodereaderbundle:11.4.3000'
}
```
2.
```kotlin
dependencies {
implementation("com.dynamsoft:barcodereaderbundle:11.4.1300")
implementation("com.dynamsoft:barcodereaderbundle:11.4.3000")
}
```

Expand Down
2 changes: 1 addition & 1 deletion programming/maui/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Furthermore, DBR provides a powerful parameter system in order to cope with vari

#### .Net

- .NET 8.0 and .NET 9.0.
- .NET 10.0 and above.

#### Android

Expand Down
4 changes: 2 additions & 2 deletions programming/objectivec-swift/foundational-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ There are three ways to add the SDK into your project - **Manually**, via **Coco

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

3. Select `barcode-reader-spm`, choose `Exact version`, enter **11.4.1200**, then click **Add Package**.
3. Select `barcode-reader-spm`, choose `Exact version`, enter **11.4.3000**, then click **Add Package**.

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

Expand All @@ -60,7 +60,7 @@ There are three ways to add the SDK into your project - **Manually**, via **Coco
target 'HelloWorld' do
use_frameworks!

pod 'DynamsoftBarcodeReaderBundle','11.4.1200'
pod 'DynamsoftBarcodeReaderBundle','11.4.3000'

end
```
Expand Down
1 change: 1 addition & 0 deletions programming/objectivec-swift/release-notes/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ breadcrumbText: Release Notes

# Dynamsoft Barcode Reader iOS SDK - Release Notes

- [11.4.3000 (04/02/2026)]({{ site.oc_release_notes }}ios-11.html#1143000-07072026)
- [11.4.1200 (04/02/2026)]({{ site.oc_release_notes }}ios-11.html#1141200-04022026)
- [11.4.1010 (03/16/2026)]({{ site.oc_release_notes }}ios-11.html#1141010-03162026)
- [11.4.1000 (02/05/2026)]({{ site.oc_release_notes }}ios-11.html#1141000-02052026)
Expand Down
10 changes: 10 additions & 0 deletions programming/objectivec-swift/release-notes/ios-11.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,16 @@ noTitleIndex: true

# Release Notes for iOS SDK - 11.x

## 11.4.3000 (07/07/2026)

### Security Updates

- Updated third-party libraries to incorporate the latest security fixes.

### Fixed

- Fixed crash issues that could occur on iOS devices.

## 11.4.1200 (04/02/2026)

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions programming/objectivec-swift/user-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ There are three ways in which you can add the `DynamsoftBarcodeReaderBundle` SDK

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

3. Select `barcode-reader-spm`, choose `Exact version`, enter **11.4.1200**, then click **Add Package**.
3. Select `barcode-reader-spm`, choose `Exact version`, enter **11.4.3000**, then click **Add Package**.

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

Expand All @@ -63,7 +63,7 @@ There are three ways in which you can add the `DynamsoftBarcodeReaderBundle` SDK
target 'ScanSingleBarcode' do
use_frameworks!

pod 'DynamsoftBarcodeReaderBundle','11.4.1200'
pod 'DynamsoftBarcodeReaderBundle','11.4.3000'

end
```
Expand Down