Skip to content

Commit 2ed27c1

Browse files
AllenAllen-Dynamsoft
authored andcommitted
DBR v10.2.10 released.
1 parent 052b97a commit 2ed27c1

File tree

64 files changed

+91
-321
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+91
-321
lines changed

README.md

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This repository contains multiple samples that demonstrate how to use the [Dynam
1515

1616
- Supported OS: <a href="https://developer.android.com/about/versions/lollipop" target="_blank">Android 5.0 (API Level 21)</a> or higher.
1717
- Supported ABI: **armeabi-v7a**, **arm64-v8a**, **x86** and **x86_64**.
18-
- Development Environment: Android Studio 3.4+ (Android Studio 4.2+ recommended).
18+
- Development Environment: Android Studio 2022.2.1 or higher.
1919

2020
### iOS
2121

@@ -25,8 +25,6 @@ This repository contains multiple samples that demonstrate how to use the [Dynam
2525

2626
## Samples
2727

28-
### Barcode Reader Samples
29-
3028
| Sample Name | Description | Programming Language(s) |
3129
| ----------- | ----------- | ----------------------- |
3230
| `DecodeWithCameraEnhancer` | The simplest sample of video streaming barcode scanner using **DynamsoftCameraEnhancer** as the input source. | Java(Android)/Kotlin/Objective-C/Swift |
@@ -37,17 +35,6 @@ This repository contains multiple samples that demonstrate how to use the [Dynam
3735
| `PerformanceSettings` | Parameter configuration guide on improving the speed, read-rate and accuracy of barcode reading. The sample includes the code of image decoding from the album. | Java(Android)/Swift |
3836
| `TinyBarcodeDecoding` | The sample to tell you how to process the tiny barcodes. Including zoom and focus control. | Java(Android)/Swift |
3937

40-
### Capture Vision Samples
41-
42-
The following samples aggregate multiple products under `DynamsoftCaptureVision` architecture. They include the barcode decoding feature and implement it in more specific usage scenarios with the help of the other Dynamsoft functional products.
43-
44-
> Note: Move to the [DynamsoftCaptureVison samples repo](https://github.com/Dynamsoft/capture-vision-mobile-samples) to view the following samples.
45-
46-
| Sample Name | Description | Programming Language(s) | Products |
47-
| ----------- | ----------- | ----------------------- | -------- |
48-
| `DriversLicenseScanner` | Scan the PDF417 barcodes on a drivers' license and extract the drivers information. | Java(Android)/Swift | [DynamsoftBarcodeReader](https://www.dynamsoft.com/barcode-reader/overview/)<br> [DynamsoftCodeParser](https://www.dynamsoft.com/code-parser/docs/core/introduction/) |
49-
| `VINScanner` | Scan the vin barcode or text and extract the vehicle information. | Java(Android)/Swift | [DynamsoftBarcodeReader](https://www.dynamsoft.com/barcode-reader/overview/) <br> [DynamsoftLabelRecognizer](https://www.dynamsoft.com/label-recognition/overview/)<br> [DynamsoftCodeParser](https://www.dynamsoft.com/code-parser/docs/core/introduction/) |
50-
5138
### How to build (For iOS Editions)
5239

5340
1. Enter the sample folder, install DBR SDK through `pod` command

android/GeneralSettings/GeneralSettings/build.gradle

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,7 @@ android {
3434
}
3535

3636
dependencies {
37-
implementation "com.dynamsoft:${artifactId.dce}:${versions.dce}"
38-
implementation "com.dynamsoft:${artifactId.cvr}:${versions.cvr}"
39-
implementation "com.dynamsoft:${artifactId.dbr}:${versions.dbr}"
40-
implementation "com.dynamsoft:${artifactId.util}:${versions.util}"
41-
implementation "com.dynamsoft:${artifactId.core}:${versions.core}"
42-
implementation "com.dynamsoft:${artifactId.license}:${versions.license}"
43-
implementation "com.dynamsoft:${artifactId.dip}:${versions.dip}"
37+
implementation 'com.dynamsoft:dynamsoftbarcodereaderbundle:10.2.10'
4438

4539
implementation 'androidx.navigation:navigation-fragment:2.3.1'
4640
implementation 'androidx.navigation:navigation-ui:2.3.1'

android/GeneralSettings/GeneralSettings/src/main/java/com/dynamsoft/dbr/generalsettings/ui/scanner/ScannerFragment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import androidx.recyclerview.widget.LinearLayoutManager;
1818
import androidx.recyclerview.widget.RecyclerView;
1919

20-
import com.dynamsoft.core.basic_structures.CapturedResultReceiver;
20+
import com.dynamsoft.cvr.CapturedResultReceiver;
2121
import com.dynamsoft.core.basic_structures.CompletionListener;
2222
import com.dynamsoft.core.basic_structures.EnumCapturedResultItemType;
2323
import com.dynamsoft.core.basic_structures.EnumGrayscaleTransformationMode;

android/GeneralSettings/GeneralSettings/src/main/java/com/dynamsoft/dbr/generalsettings/ui/settings/barcodesettings/barcodeformats/BarcodeFormatsAdapter.java renamed to android/GeneralSettings/GeneralSettings/src/main/java/com/dynamsoft/dbr/generalsettings/ui/settings/BarcodeFormatsAdapter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.dynamsoft.dbr.generalsettings.ui.settings.barcodesettings.barcodeformats;
1+
package com.dynamsoft.dbr.generalsettings.ui.settings;
22

33
import android.content.Context;
44
import android.view.LayoutInflater;

android/GeneralSettings/GeneralSettings/src/main/java/com/dynamsoft/dbr/generalsettings/ui/settings/barcodesettings/barcodeformats/BarcodeFormatsFragment.java renamed to android/GeneralSettings/GeneralSettings/src/main/java/com/dynamsoft/dbr/generalsettings/ui/settings/BarcodeFormatsFragment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.dynamsoft.dbr.generalsettings.ui.settings.barcodesettings.barcodeformats;
1+
package com.dynamsoft.dbr.generalsettings.ui.settings;
22

33
import android.os.Bundle;
44

android/GeneralSettings/GeneralSettings/src/main/java/com/dynamsoft/dbr/generalsettings/ui/settings/barcodesettings/barcodeformats/BarcodeFormatsUtil.java renamed to android/GeneralSettings/GeneralSettings/src/main/java/com/dynamsoft/dbr/generalsettings/ui/settings/BarcodeFormatsUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.dynamsoft.dbr.generalsettings.ui.settings.barcodesettings.barcodeformats;
1+
package com.dynamsoft.dbr.generalsettings.ui.settings;
22

33

44
import com.dynamsoft.dbr.EnumBarcodeFormat;

android/GeneralSettings/GeneralSettings/src/main/java/com/dynamsoft/dbr/generalsettings/ui/settings/barcodesettings/BarcodeSettingsFragment.java renamed to android/GeneralSettings/GeneralSettings/src/main/java/com/dynamsoft/dbr/generalsettings/ui/settings/BarcodeSettingsFragment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.dynamsoft.dbr.generalsettings.ui.settings.barcodesettings;
1+
package com.dynamsoft.dbr.generalsettings.ui.settings;
22

33
import android.os.Bundle;
44
import android.view.LayoutInflater;

android/GeneralSettings/GeneralSettings/src/main/java/com/dynamsoft/dbr/generalsettings/ui/settings/camerasettings/CameraSettingsFragment.java renamed to android/GeneralSettings/GeneralSettings/src/main/java/com/dynamsoft/dbr/generalsettings/ui/settings/CameraSettingsFragment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.dynamsoft.dbr.generalsettings.ui.settings.camerasettings;
1+
package com.dynamsoft.dbr.generalsettings.ui.settings;
22

33
import android.os.Bundle;
44
import android.view.LayoutInflater;

android/GeneralSettings/GeneralSettings/src/main/java/com/dynamsoft/dbr/generalsettings/ui/settings/barcodesettings/barcodeformats/TextAndSwitchViewHolder.java renamed to android/GeneralSettings/GeneralSettings/src/main/java/com/dynamsoft/dbr/generalsettings/ui/settings/TextAndSwitchViewHolder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.dynamsoft.dbr.generalsettings.ui.settings.barcodesettings.barcodeformats;
1+
package com.dynamsoft.dbr.generalsettings.ui.settings;
22

33
import android.util.TypedValue;
44
import android.view.View;

android/GeneralSettings/GeneralSettings/src/main/java/com/dynamsoft/dbr/generalsettings/ui/settings/viewsettings/ViewSettingsFragment.java renamed to android/GeneralSettings/GeneralSettings/src/main/java/com/dynamsoft/dbr/generalsettings/ui/settings/ViewSettingsFragment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.dynamsoft.dbr.generalsettings.ui.settings.viewsettings;
1+
package com.dynamsoft.dbr.generalsettings.ui.settings;
22

33
import android.os.Bundle;
44

0 commit comments

Comments
 (0)