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
9 changes: 6 additions & 3 deletions programming/android/user-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ In this guide, you will learn step by step on how to build a document scanner ap

- Supported OS: Android 5.0 (API Level 21) or higher.
- Supported ABI: **armeabi-v7a**, **arm64-v8a**, **x86** and **x86_64**.
- Development Environment: Android Studio 2022.2.1 or higher.
- Development Environment:
- IDE: **Android Studio 2024.3.2** suggested.
- JDK: **Java 17** or higher.
- Gradle: **8.0** or higher.

## Add the SDK

Expand Down Expand Up @@ -82,13 +85,13 @@ In this guide, you will learn step by step on how to build a document scanner ap
>1.
```groovy
dependencies {
implementation 'com.dynamsoft:capturevisionbundle:3.0.3000'
implementation 'com.dynamsoft:capturevisionbundle:3.0.5000'
}
```
2.
```kotlin
dependencies {
implementation("com.dynamsoft:capturevisionbundle:3.0.3000")
implementation("com.dynamsoft:capturevisionbundle:3.0.5000")
}
```

Expand Down
4 changes: 2 additions & 2 deletions programming/ios/user-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ There are two ways to add the SDK into your project - **CocoaPods**, or via **Sw
target 'HelloWorld' do
use_frameworks!

pod 'DynamsoftCaptureVisionBundle','3.0.3000'
pod 'DynamsoftCaptureVisionBundle','3.0.5000'

end
```
Expand All @@ -66,7 +66,7 @@ There are two ways to add the SDK into your project - **CocoaPods**, or via **Sw

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

3. Select `capture-vision-spm`, choose `Exact version`, enter **3.0.3000**, then click **Add Package**.
3. Select `capture-vision-spm`, choose `Exact version`, enter **3.0.5000**, then click **Add Package**.

4. Check all the frameworks and add.

Expand Down