From b61c157401dd8ac50af3c63362241d5db4572c0b Mon Sep 17 00:00:00 2001 From: DMGithubPublisher Date: Thu, 16 Oct 2025 13:35:06 +0800 Subject: [PATCH 1/2] update to internal commit 814fac16 --- programming/android/user-guide.md | 4 ++-- programming/ios/user-guide.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/programming/android/user-guide.md b/programming/android/user-guide.md index acecc89..f230d89 100644 --- a/programming/android/user-guide.md +++ b/programming/android/user-guide.md @@ -85,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.5000' + implementation 'com.dynamsoft:capturevisionbundle:3.2.1000' } ``` 2. ```kotlin dependencies { - implementation("com.dynamsoft:capturevisionbundle:3.0.5000") + implementation("com.dynamsoft:capturevisionbundle:3.2.1000") } ``` diff --git a/programming/ios/user-guide.md b/programming/ios/user-guide.md index 6f43597..b91067f 100644 --- a/programming/ios/user-guide.md +++ b/programming/ios/user-guide.md @@ -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.5200' + pod 'DynamsoftCaptureVisionBundle','3.2.1000' end ``` @@ -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.5200**, then click **Add Package**. +3. Select `capture-vision-spm`, choose `Exact version`, enter **3.2.1000**, then click **Add Package**. 4. Check all the frameworks and add. From 6a56c593275628758946580c51e054ddb7fb99f5 Mon Sep 17 00:00:00 2001 From: DMGithubPublisher Date: Thu, 16 Oct 2025 13:54:58 +0800 Subject: [PATCH 2/2] update to internal commit 55ee296b --- programming/android/user-guide.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/programming/android/user-guide.md b/programming/android/user-guide.md index f230d89..598295c 100644 --- a/programming/android/user-guide.md +++ b/programming/android/user-guide.md @@ -318,12 +318,7 @@ Add the SDK to your new project. Please read [Add the SDK](#add-the-sdk) section @Override public void onPause() { super.onPause(); - try { - mCamera.close(); - } catch (CameraEnhancerException e) { - e.printStackTrace(); - } - + mCamera.close(); mRouter.stopCapturing(); } }