Skip to content

Commit 9419596

Browse files
update to 10.4.2003
1 parent 5afb915 commit 9419596

File tree

18 files changed

+31
-200
lines changed

18 files changed

+31
-200
lines changed

android/BarcodeScannerAPISamples/ScanSingleBarcode/src/test/java/com/dynamsoft/oob_ui_barcode/ExampleUnitTest.java

Lines changed: 0 additions & 17 deletions
This file was deleted.

android/BarcodeScannerAPISamples/ScanSingleBarcodeKt/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ android {
3232

3333
dependencies {
3434
implementation 'com.dynamsoft:dynamsoftbarcodereaderbundle:10.4.2003'
35-
3635
implementation 'androidx.core:core-ktx:1.13.1'
3736

3837
implementation 'androidx.appcompat:appcompat:1.6.1'

android/BarcodeScannerAPISamples/ScanSingleBarcodeKt/src/test/java/com/dynamsoft/quickstartsingleresultbarcodescannerkt/ExampleUnitTest.kt

Lines changed: 0 additions & 17 deletions
This file was deleted.

android/FoundationalAPISamples/DecodeFromAnImage/src/test/java/com/dynamsoft/dbr/decodefromfile/ExampleUnitTest.java

Lines changed: 0 additions & 17 deletions
This file was deleted.

android/FoundationalAPISamples/DecodeMultipleBarcodes/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ android {
3131

3232
dependencies {
3333
implementation 'com.dynamsoft:dynamsoftbarcodereaderbundle:10.4.2003'
34-
3534
implementation 'androidx.appcompat:appcompat:1.6.1'
3635
implementation 'com.google.android.material:material:1.9.0'
3736
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'

android/FoundationalAPISamples/DecodeWithCameraEnhancer/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ android {
3030

3131
dependencies {
3232
implementation 'com.dynamsoft:dynamsoftbarcodereaderbundle:10.4.2003'
33-
3433
implementation 'androidx.appcompat:appcompat:1.6.1'
3534
implementation 'com.google.android.material:material:1.9.0'
3635
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'

android/FoundationalAPISamples/DecodeWithCameraEnhancer/src/androidTest/java/com/dynamsoft/dbr/helloworld/ExampleInstrumentedTest.java

Lines changed: 0 additions & 26 deletions
This file was deleted.

android/FoundationalAPISamples/DecodeWithCameraEnhancer/src/test/java/com/dynamsoft/dbr/helloworld/ExampleUnitTest.java

Lines changed: 0 additions & 17 deletions
This file was deleted.

android/FoundationalAPISamples/DecodeWithCameraX/src/main/java/com/dynamsoft/dbr/decodewithcamerax/MainActivity.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public void onDecodedBarcodesReceived(DecodedBarcodesResult result) {
6969
protected void onResume() {
7070
super.onResume();
7171
// Start capturing when the view will appear. If success, you will receive results in the CapturedResultReceiver.
72-
mRouter.startCapturing(EnumPresetTemplate.PT_READ_BARCODES, new CompletionListener() {
72+
mRouter.startCapturing(EnumPresetTemplate.PT_READ_SINGLE_BARCODE, new CompletionListener() {
7373
@Override
7474
public void onSuccess() {
7575

@@ -112,7 +112,7 @@ private void showDialog(String title, String message) {
112112
if(mAlertDialog == null) {
113113
// Restart the capture when the dialog is closed.
114114
mAlertDialog = new AlertDialog.Builder(this).setCancelable(true).setPositiveButton("OK", null)
115-
.setOnDismissListener(dialog -> mRouter.startCapturing(EnumPresetTemplate.PT_READ_BARCODES, null))
115+
.setOnDismissListener(dialog -> mRouter.startCapturing(EnumPresetTemplate.PT_READ_SINGLE_BARCODE, null))
116116
.create();
117117
}
118118
mAlertDialog.setTitle(title);

android/FoundationalAPISamples/DecodeWithCameraX/src/test/java/com/dynamsoft/dbr/decodewithcamerax/ExampleUnitTest.java

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)