Skip to content

Commit 90982bf

Browse files
update to v2.6.1013
1 parent 896f720 commit 90982bf

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

DetectAndDeskewDocument/src/Editor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export function Editor({navigation}: StackNavigation) {
1414
);
1515

1616
return () => {
17-
if(global.originalImage) {
17+
if (global.originalImage && typeof global.originalImage.release === 'function') {
1818
global.originalImage.release();
1919
}
2020
};

DetectAndDeskewDocument/src/NormalizedImage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const NormalizedImage = () => {
88

99
useEffect(() => {
1010
return () => {
11-
if(global.normalizedImage) {
11+
if (global.normalizedImage && typeof global.normalizedImage.release === 'function') {
1212
global.normalizedImage.release();
1313
}
1414
};

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ This is one way to run your app — you can also run it directly from within And
117117

118118
## Integration Guide For Your Project
119119

120-
- [Foundation Barcode Reader Integration Guide](./foundation-barcode-reader-guide.md)
121120
- [Ready-to-use Barcode Scanner Integration Guide](./ready-to-use-barcode-scanner-guide.md)
121+
- [Foundational Barcode Reader Integration Guide](./foundation-barcode-reader-guide.md)
122122
- [Document Scanner Integration Guide](./document-scanner-guide.md)
123123
- [MRZ Scanner Integration Guide](./mrz-scanner-guide.md)
124124
- [Divers' License Scanner Integration Guide](./drivers-license-scanner-guide.md)

ScanMRZ/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@react-navigation/native": "6.1.18",
1414
"@react-navigation/native-stack": "6.11.0",
1515
"dynamsoft-capture-vision-react-native": "^2.6.1013",
16-
"dynamsoft-mrz-react-native": "^3.4.200-alpha.2",
16+
"dynamsoft-mrz-react-native": "^3.4.200",
1717
"react": "18.3.1",
1818
"react-native": "0.75.2",
1919
"react-native-safe-area-context": "4.11.0",

ready-to-use-barcode-scanner-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ We provide BarcodeScanner APIs, which is a ready-to-use component that allows de
66
With the built-in component, it streamlines the integration of barcode scanning functionality into any application.
77

88
In the BarcodeScanner APIs, we provide some customization features based on easy integration to meet your needs.
9-
However, if you want to achieve a higher level of customization, we recommend that you use our Foundation APIs and see this [Foundation Barcode Reader Guide](./foundation-barcode-reader-guide).
9+
However, if you want to achieve a higher level of customization, we recommend that you use our Foundation APIs and see this [Foundation Barcode Reader Guide](./foundation-barcode-reader-guide.md).
1010

1111
## Supported Barcode Symbologies
1212

0 commit comments

Comments
 (0)