@regulaforensics/ionic-native-document-reader 6.1.2 → 6.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/example/package.json
CHANGED
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"cordova-plugin-android-permissions": "^1.1.0",
|
|
33
33
|
"@regulaforensics/cordova-plugin-document-reader-api": "^6.1.2",
|
|
34
34
|
"@regulaforensics/cordova-plugin-document-reader-core-fullrfid": "^6.1.0",
|
|
35
|
-
"@regulaforensics/ionic-native-document-reader": "^6.1.
|
|
35
|
+
"@regulaforensics/ionic-native-document-reader": "^6.1.3",
|
|
36
36
|
"cordova-plugin-file": "^6.0.2",
|
|
37
37
|
"cordova-plugin-telerik-imagepicker": "^2.3.5",
|
|
38
38
|
"core-js": "^3.6.5",
|
package/package.json
CHANGED
package/reactExample/README.txt
CHANGED
|
@@ -1,13 +1,11 @@
|
|
|
1
|
-
npm install
|
|
1
|
+
```npm install```
|
|
2
|
+
|
|
2
3
|
Android:
|
|
3
|
-
put license to android/app/src/main/assets/
|
|
4
|
-
npx jetify
|
|
5
|
-
ionic cap run android
|
|
4
|
+
put license to android/app/src/main/assets/
|
|
5
|
+
```npx jetify```
|
|
6
|
+
```ionic cap run android```
|
|
6
7
|
|
|
7
8
|
iOS:
|
|
8
|
-
put license to ios/App/App/
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
select developer profile in App.xcodeproj
|
|
12
|
-
cd ../../
|
|
13
|
-
ionic cap run ios
|
|
9
|
+
put license to ios/App/App/
|
|
10
|
+
select developer profile in ios/App/App.xcodeproj
|
|
11
|
+
```ionic cap run ios```
|
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
"@ionic-native/image-picker": "^5.36.0",
|
|
17
17
|
"@ionic/react": "^6.0.0",
|
|
18
18
|
"@ionic/react-router": "^6.0.0",
|
|
19
|
-
"@regulaforensics/cordova-plugin-document-reader-api
|
|
20
|
-
"@regulaforensics/cordova-plugin-document-reader-core-fullrfid
|
|
21
|
-
"@regulaforensics/ionic-native-document-reader
|
|
19
|
+
"@regulaforensics/cordova-plugin-document-reader-api": "^6.1.2",
|
|
20
|
+
"@regulaforensics/cordova-plugin-document-reader-core-fullrfid": "^6.1.0",
|
|
21
|
+
"@regulaforensics/ionic-native-document-reader": "^6.1.3",
|
|
22
22
|
"@testing-library/jest-dom": "^5.11.9",
|
|
23
23
|
"@testing-library/react": "^11.2.5",
|
|
24
24
|
"@testing-library/user-event": "^12.6.3",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IonPage, isPlatform } from '@ionic/react';
|
|
2
|
-
import { DocumentReader, DocumentReaderScenario, Enum, DocumentReaderCompletion, DocumentReaderResults, DocumentReaderNotification } from '@regulaforensics/ionic-native-document-reader
|
|
2
|
+
import { DocumentReader, DocumentReaderScenario, Enum, DocumentReaderCompletion, DocumentReaderResults, DocumentReaderNotification } from '@regulaforensics/ionic-native-document-reader';
|
|
3
3
|
import React from "react";
|
|
4
4
|
import { File } from '@ionic-native/file'
|
|
5
5
|
import { AndroidPermissions } from "@ionic-native/android-permissions"
|