@regulaforensics/ionic-native-document-reader 6.2.2 → 6.4.0
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/.github/ISSUE_TEMPLATE/bug-report.md +39 -0
- package/.github/ISSUE_TEMPLATE/config.yml +5 -0
- package/.github/ISSUE_TEMPLATE/feature-request.md +20 -0
- package/example/README.md +1 -3
- package/example/angular.json +2 -2
- package/example/config.xml +1 -0
- package/example/package.json +30 -26
- package/index.d.ts +117 -71
- package/index.js +87 -36
- package/ngx/index.d.ts +117 -71
- package/ngx/index.js +87 -36
- package/ngx/index.metadata.json +1 -1
- package/package.json +1 -1
- package/reactExample/README.md +0 -3
- package/reactExample/package.json +3 -3
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Bug Report
|
|
3
|
+
about: Create a report to help us improve
|
|
4
|
+
title: "[BR] "
|
|
5
|
+
labels: bug
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
**Before Submitting, be sure to**
|
|
11
|
+
- [ ] Update to the latest stable version.
|
|
12
|
+
- [ ] Read and follow the guides described in the [documentation](https://docs.regulaforensics.com?utm_source=github).
|
|
13
|
+
- [ ] Try to reproduce in our demo project.
|
|
14
|
+
- [ ] Search for your issue in the existing GitHub issues.
|
|
15
|
+
|
|
16
|
+
**Bug Description**
|
|
17
|
+
<!--A clear and concise description of what the bug is.-->
|
|
18
|
+
|
|
19
|
+
**Steps To Reproduce**
|
|
20
|
+
<!--
|
|
21
|
+
1. Go to '...'
|
|
22
|
+
2. Click on '....'
|
|
23
|
+
3. Scroll down to '....'
|
|
24
|
+
4. See error
|
|
25
|
+
-->
|
|
26
|
+
|
|
27
|
+
**Expected behavior**
|
|
28
|
+
<!--A clear and concise description of what you expected to happen.-->
|
|
29
|
+
|
|
30
|
+
**Screenshots**
|
|
31
|
+
<!--If applicable, add screenshots to help explain your issue.-->
|
|
32
|
+
|
|
33
|
+
**Environment:**
|
|
34
|
+
- Device: <!--[e.g. iPhone 12]-->
|
|
35
|
+
- OS: <!--[e.g. iOS]-->
|
|
36
|
+
- OS version: <!--[e.g. 10.0]-->
|
|
37
|
+
|
|
38
|
+
**Additional context**
|
|
39
|
+
<!--Add any other context about the problem here.-->
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Feature Request
|
|
3
|
+
about: Suggest an idea for this product
|
|
4
|
+
title: "[FR] "
|
|
5
|
+
labels: enhancement
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
**Is your feature request related to a problem? Please describe.**
|
|
11
|
+
<!--A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]-->
|
|
12
|
+
|
|
13
|
+
**Describe the solution you'd like**
|
|
14
|
+
<!--A clear and concise description of what you want to happen.-->
|
|
15
|
+
|
|
16
|
+
**Describe alternatives you've considered**
|
|
17
|
+
<!--A clear and concise description of any alternative solutions or features you've considered.-->
|
|
18
|
+
|
|
19
|
+
**Additional context**
|
|
20
|
+
<!--Add any other context or screenshots about the feature request here.-->
|
package/example/README.md
CHANGED
|
@@ -5,23 +5,21 @@
|
|
|
5
5
|
```bash
|
|
6
6
|
$ cd example
|
|
7
7
|
$ npm install
|
|
8
|
+
$ npx jetify
|
|
8
9
|
$ ionic cordova prepare
|
|
9
10
|
```
|
|
10
11
|
4. Copy the `regula.license` file to the `example/src/assets` folder.
|
|
11
12
|
|
|
12
13
|
5. Android:
|
|
13
|
-
* Change the application ID to the one you have specified during the registration at [licensing.regulaforensics.com](https://licensing.regulaforensics.com).
|
|
14
14
|
* Run `ionic cordova build android`, then`ionic cordova run android` inside `example` folder - this is just one way to run the app. You can also run it directly from within Android Studio.
|
|
15
15
|
|
|
16
16
|
6. iOS:
|
|
17
|
-
* Change the Bundle Identifier to the one you have specified during the registration at [licensing.regulaforensics.com](https://licensing.regulaforensics.com).
|
|
18
17
|
* Run `ionic cordova build ios`, then `ionic cordova run ios` inside `example` folder - this is just one way to run the app. You can also run it directly from within Xcode.
|
|
19
18
|
|
|
20
19
|
|
|
21
20
|
# Troubleshooting license issues
|
|
22
21
|
If you have issues with license verification when running the application, please verify that next is true:
|
|
23
22
|
1. The OS, which you use, is specified in the license (e.g., Android and/or iOS).
|
|
24
|
-
2. The application (Bundle) ID, which you use, is specified in the license.
|
|
25
23
|
3. The license is valid (not expired).
|
|
26
24
|
4. The date and time on the device, where you run the application, are valid.
|
|
27
25
|
5. You use the latest release version of the Document Reader SDK.
|
package/example/angular.json
CHANGED
|
@@ -147,7 +147,7 @@
|
|
|
147
147
|
}
|
|
148
148
|
},
|
|
149
149
|
"ionic-cordova-build": {
|
|
150
|
-
"builder": "@ionic/
|
|
150
|
+
"builder": "@ionic/cordova-builders:cordova-build",
|
|
151
151
|
"options": {
|
|
152
152
|
"browserTarget": "app:build"
|
|
153
153
|
},
|
|
@@ -158,7 +158,7 @@
|
|
|
158
158
|
}
|
|
159
159
|
},
|
|
160
160
|
"ionic-cordova-serve": {
|
|
161
|
-
"builder": "@ionic/
|
|
161
|
+
"builder": "@ionic/cordova-builders:cordova-serve",
|
|
162
162
|
"options": {
|
|
163
163
|
"cordovaBuildTarget": "app:ionic-cordova-build",
|
|
164
164
|
"devServerTarget": "app:serve"
|
package/example/config.xml
CHANGED
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
</config-file>
|
|
30
30
|
<preference name="android-minSdkVersion" value="22" />
|
|
31
31
|
<preference name="android-compileSdkVersion" value="29" />
|
|
32
|
+
<preference name="AndroidXEnabled" value="true" />
|
|
32
33
|
<resource-file src="resources/android/xml/network_security_config.xml" target="app/src/main/res/xml/network_security_config.xml" />
|
|
33
34
|
<allow-intent href="market:*" />
|
|
34
35
|
<icon density="ldpi" src="resources/android/icon/drawable-ldpi-icon.png" />
|
package/example/package.json
CHANGED
|
@@ -13,43 +13,45 @@
|
|
|
13
13
|
},
|
|
14
14
|
"private": true,
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@angular/common": "~
|
|
17
|
-
"@angular/core": "~
|
|
18
|
-
"@angular/forms": "~
|
|
19
|
-
"@angular/platform-browser": "~
|
|
20
|
-
"@angular/platform-browser-dynamic": "~
|
|
21
|
-
"@angular/router": "~
|
|
16
|
+
"@angular/common": "~13.3.2",
|
|
17
|
+
"@angular/core": "~13.3.2",
|
|
18
|
+
"@angular/forms": "~13.3.2",
|
|
19
|
+
"@angular/platform-browser": "~13.3.2",
|
|
20
|
+
"@angular/platform-browser-dynamic": "~13.3.2",
|
|
21
|
+
"@angular/router": "~13.3.2",
|
|
22
22
|
"@ionic-native/android-permissions": "^5.28.0",
|
|
23
23
|
"@ionic-native/core": "^5.28.0",
|
|
24
24
|
"@ionic-native/file": "^5.28.0",
|
|
25
25
|
"@ionic-native/image-picker": "^5.28.0",
|
|
26
26
|
"@ionic-native/splash-screen": "^5.28.0",
|
|
27
27
|
"@ionic-native/status-bar": "^5.28.0",
|
|
28
|
-
"@ionic/angular": "^
|
|
29
|
-
"cordova-
|
|
30
|
-
"cordova-ios": "^6.
|
|
28
|
+
"@ionic/angular": "^6.0.15",
|
|
29
|
+
"@ionic/cordova-builders": "^6.1.0",
|
|
30
|
+
"cordova-ios": "^6.2.0",
|
|
31
|
+
"@regulaforensics/cordova-plugin-document-reader-api": "^6.4.0",
|
|
32
|
+
"@regulaforensics/cordova-plugin-document-reader-core-fullrfid": "^6.4.0",
|
|
33
|
+
"@regulaforensics/ionic-native-document-reader": "^6.4.0",
|
|
34
|
+
"cordova-android": "^10.1.1",
|
|
31
35
|
"cordova-plugin-add-swift-support": "^2.0.2",
|
|
32
36
|
"cordova-plugin-android-permissions": "^1.1.0",
|
|
33
|
-
"@regulaforensics/cordova-plugin-document-reader-api": "^6.2.2",
|
|
34
|
-
"@regulaforensics/cordova-plugin-document-reader-core-fullrfid": "^6.2.1",
|
|
35
|
-
"@regulaforensics/ionic-native-document-reader": "^6.2.2",
|
|
36
37
|
"cordova-plugin-file": "^6.0.2",
|
|
37
38
|
"cordova-plugin-telerik-imagepicker": "^2.3.5",
|
|
38
39
|
"core-js": "^3.6.5",
|
|
39
40
|
"rxjs": "~6.6.3",
|
|
40
41
|
"tslib": "^2.0.1",
|
|
41
|
-
"zone.js": "~0.11.1"
|
|
42
|
+
"zone.js": "~0.11.1",
|
|
43
|
+
"jetifier": "^2.0.0"
|
|
42
44
|
},
|
|
43
45
|
"devDependencies": {
|
|
44
46
|
"@angular-devkit/architect": "~0.1001.4",
|
|
45
|
-
"@angular-devkit/build-angular": "~
|
|
46
|
-
"@angular-devkit/core": "~
|
|
47
|
-
"@angular-devkit/schematics": "~
|
|
48
|
-
"@angular/cli": "~
|
|
49
|
-
"@angular/compiler": "~
|
|
50
|
-
"@angular/compiler-cli": "~
|
|
51
|
-
"@angular/language-service": "~
|
|
52
|
-
"@ionic/angular-toolkit": "^
|
|
47
|
+
"@angular-devkit/build-angular": "~13.3.2",
|
|
48
|
+
"@angular-devkit/core": "~13.3.2",
|
|
49
|
+
"@angular-devkit/schematics": "~13.3.2",
|
|
50
|
+
"@angular/cli": "~13.3.2",
|
|
51
|
+
"@angular/compiler": "~13.3.2",
|
|
52
|
+
"@angular/compiler-cli": "~13.3.2",
|
|
53
|
+
"@angular/language-service": "~13.3.2",
|
|
54
|
+
"@ionic/angular-toolkit": "^6.1.0",
|
|
53
55
|
"@types/jasmine": "~3.5.14",
|
|
54
56
|
"@types/jasminewd2": "~2.0.8",
|
|
55
57
|
"@types/node": "~14.11.5",
|
|
@@ -59,10 +61,10 @@
|
|
|
59
61
|
"cordova-plugin-ionic-webview": "^5.0.0",
|
|
60
62
|
"cordova-plugin-splashscreen": "^6.0.0",
|
|
61
63
|
"cordova-plugin-statusbar": "^2.4.3",
|
|
62
|
-
"cordova-plugin-whitelist": "^1.3.
|
|
63
|
-
"jasmine-core": "~
|
|
64
|
+
"cordova-plugin-whitelist": "^1.3.5",
|
|
65
|
+
"jasmine-core": "~4.0.1",
|
|
64
66
|
"jasmine-spec-reporter": "~6.0.0",
|
|
65
|
-
"karma": "~
|
|
67
|
+
"karma": "~6.3.17",
|
|
66
68
|
"karma-chrome-launcher": "~3.1.0",
|
|
67
69
|
"karma-coverage-istanbul-reporter": "~3.0.3",
|
|
68
70
|
"karma-jasmine": "~4.0.1",
|
|
@@ -70,7 +72,7 @@
|
|
|
70
72
|
"protractor": "~7.0.0",
|
|
71
73
|
"ts-node": "~9.0.0",
|
|
72
74
|
"tslint": "~5.20.1",
|
|
73
|
-
"typescript": "~4.
|
|
75
|
+
"typescript": "~4.4.2"
|
|
74
76
|
},
|
|
75
77
|
"description": "An Ionic project",
|
|
76
78
|
"cordova": {
|
|
@@ -78,7 +80,9 @@
|
|
|
78
80
|
"@regulaforensics/cordova-plugin-document-reader-api": {},
|
|
79
81
|
"@regulaforensics/cordova-plugin-document-reader-core-fullrfid": {},
|
|
80
82
|
"cordova-plugin-android-permissions": {},
|
|
81
|
-
"cordova-plugin-telerik-imagepicker": {
|
|
83
|
+
"cordova-plugin-telerik-imagepicker": {
|
|
84
|
+
"PHOTO_LIBRARY_USAGE_DESCRIPTION": " "
|
|
85
|
+
},
|
|
82
86
|
"cordova-plugin-file": {},
|
|
83
87
|
"cordova-plugin-whitelist": {},
|
|
84
88
|
"cordova-plugin-statusbar": {},
|