Skip to content

Commit 9859fda

Browse files
update to internal commit f6aa8aac
1 parent 43ec72e commit 9859fda

File tree

9 files changed

+13
-17
lines changed

9 files changed

+13
-17
lines changed

programming/android/foundational-guide.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,13 @@ There are two ways to add the libraries into your project - **Manually** and **M
6969
>1.
7070
```groovy
7171
dependencies {
72-
implementation 'com.dynamsoft:barcodereaderbundle:11.0.3000'
72+
implementation 'com.dynamsoft:barcodereaderbundle:11.0.5000'
7373
}
7474
```
7575
2.
7676
```kotlin
7777
dependencies {
78-
implementation("com.dynamsoft:barcodereaderbundle:11.0.3000")
78+
implementation("com.dynamsoft:barcodereaderbundle:11.0.5000")
7979
}
8080
```
8181

@@ -131,7 +131,7 @@ In this section, we are going to explain how to create a Hello World implementat
131131

132132
> [!NOTE]
133133
>
134-
> - Android Studio 2024.1.2 is used here in this guide.
134+
> - Android Studio 2024.3.2 is used here in this guide.
135135
> - You can get similar source code from
136136
> - <a href="https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/main/android/FoundationalAPISamples/DecodeWithCameraEnhancer" target="_blank">DecodeWithCameraEnhancer Sample (Java)</a>
137137
> - 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.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ noTitleIndex: true
1010

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

13-
## 11.0.5000 (07/25/2025)
13+
## 11.0.5000 (07/29/2025)
1414

1515
### New
1616

programming/android/release-notes/index.md

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

1111
# Dynamsoft Barcode Reader Android SDK - Release Notes
1212

13-
- [11.0.5000 (07/25/2025)]({{ site.android_release_notes }}android-11.html#1105000-07252025)
13+
- [11.0.5000 (07/29/2025)]({{ site.android_release_notes }}android-11.html#1105000-07292025)
1414
- [11.0.3000 (05/15/2025)]({{ site.android_release_notes }}android-11.html#1103000-05152025)
1515
- [10.4.3002 (03/07/2025)]({{ site.android_release_notes }}android-10.html#1043002-03072025)
1616
- [10.4.3001 (02/11/2025)]({{ site.android_release_notes }}android-10.html#1043001-02112025)

programming/android/upgrade.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,6 @@ pageStartVer: 10.0
5050
}
5151
```
5252

53-
> Note: If you are using gradle 6.x or older version, the maven dependencies should be configured in `[App Project Root Path]\app\build.gradle`
54-
5553
2. Open the file `[App Project Root Path]\app\build.gradle` and add the dependencies:
5654

5755
<div class="sample-code-prefix"></div>

programming/android/user-guide.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,6 @@ There are two ways in which you can include the `dynamsoftbarcodereaderbundle` l
6767
}
6868
```
6969

70-
> Note: If you are using gradle 6.x or older version, the maven dependencies should be configured in `[App Project Root Path]\app\build.gradle`
71-
7270
2. Open the file `[App Project Root Path]\app\build.gradle` and add the dependencies:
7371

7472
<div class="sample-code-prefix"></div>
@@ -78,13 +76,13 @@ There are two ways in which you can include the `dynamsoftbarcodereaderbundle` l
7876
>1.
7977
```groovy
8078
dependencies {
81-
implementation 'com.dynamsoft:barcodereaderbundle:11.0.3100'
79+
implementation 'com.dynamsoft:barcodereaderbundle:11.0.5000'
8280
}
8381
```
8482
2.
8583
```kotlin
8684
dependencies {
87-
implementation("com.dynamsoft:barcodereaderbundle:11.0.3100")
85+
implementation("com.dynamsoft:barcodereaderbundle:11.0.5000")
8886
}
8987
```
9088

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 **10.4.2003**, then click **Add Package**.
31+
3. Select `barcode-reader-spm`, choose `Exact version`, enter **11.0.5000**, 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.0.3000'
43+
pod 'DynamsoftBarcodeReaderBundle','11.0.5000'
4444

4545
end
4646
```

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

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

1111
# Dynamsoft Barcode Reader iOS SDK - Release Notes
1212

13-
- [11.0.5000 (07/25/2025)]({{ site.oc_release_notes }}ios-11.html#1105000-07252025)
13+
- [11.0.5000 (07/29/2025)]({{ site.oc_release_notes }}ios-11.html#1105000-07292025)
1414
- [11.0.3000 (05/15/2025)]({{ site.oc_release_notes }}ios-11.html#1103000-05152025)
1515
- [10.4.3002 (03/07/2025)]({{ site.oc_release_notes }}ios-10.html#1043002-03072025)
1616
- [10.4.3001 (02/11/2025)]({{ site.oc_release_notes }}ios-10.html#1043001-02112025)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ noTitleIndex: true
1010

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

13-
## 11.0.5000 (07/25/2025)
13+
## 11.0.5000 (07/29/2025)
1414

1515
### Changed
1616

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.0.3000**, then click **Add Package**.
38+
3. Select `barcode-reader-spm`, choose `Exact version`, enter **11.0.5000**, 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.0.3000'
50+
pod 'DynamsoftBarcodeReaderBundle','11.0.5000'
5151

5252
end
5353
```

0 commit comments

Comments
 (0)