@regulaforensics/document-reader 8.3.276-beta → 8.3.280-beta
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/RNDocumentReader.podspec +1 -1
- package/examples/capacitor/README.md +4 -2
- package/examples/capacitor/package-lock.json +520 -447
- package/examples/capacitor/package.json +3 -5
- package/examples/capacitor/scripts/setup.sh +5 -3
- package/examples/capacitor/src/main.css +9 -8
- package/examples/capacitor/src/main.html +1 -1
- package/examples/capacitor/src/main.tsx +2 -2
- package/examples/ionic/README.md +4 -2
- package/examples/ionic/config.xml +1 -0
- package/examples/ionic/package.json +3 -3
- package/examples/ionic/src/main.css +9 -8
- package/examples/ionic/src/main.html +1 -1
- package/examples/ionic/src/main.tsx +2 -2
- package/examples/react_native/README.md +4 -2
- package/examples/react_native/package.json +3 -3
- package/examples/react_native/src/main.css +9 -8
- package/examples/react_native/src/main.html +1 -1
- package/examples/react_native/src/main.tsx +2 -2
- package/package.json +1 -1
- package/plugin.xml +1 -1
- package/test/package-lock.json +1 -1
- package/www/types/index.d.ts +4 -4
package/RNDocumentReader.podspec
CHANGED
|
@@ -2,8 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
## How to build demo application
|
|
4
4
|
1. Download or the clone current repository using the command `git clone https://github.com/regulaforensics/npm-document-reader.git`.
|
|
5
|
-
2.
|
|
6
|
-
3.
|
|
5
|
+
2. Put `regula.license` file at `public/assets/` (you can get a trial license [here](https://client.regulaforensics.com)).
|
|
6
|
+
3. Put `db.dat` file at `public/assets/` (you can get a trial database [here](https://client.regulaforensics.com/customer/databases))
|
|
7
|
+
4. Execute `npm run setup` within this directory.
|
|
8
|
+
5. Run the app:
|
|
7
9
|
* IOS: `npm run ios`.
|
|
8
10
|
* Android: `npm run android`.
|
|
9
11
|
|