cordova-plugin-unvired-universal-sdk 1.0.84 → 1.0.86
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/README.md +5 -1
- package/package.json +1 -1
- package/plugin.xml +2 -3
- package/www/kernel.js +66 -7
package/README.md
CHANGED
|
@@ -5,7 +5,6 @@ This cordova plugin is published as a [npm package](https://www.npmjs.com/packag
|
|
|
5
5
|
1. Uninstall the existing dependency plugins (if any)
|
|
6
6
|
```
|
|
7
7
|
$ cordova plugin rm cordova-plugin-device --force
|
|
8
|
-
$ cordova plugin rm cordova-plugin-file --force
|
|
9
8
|
```
|
|
10
9
|
|
|
11
10
|
2. Uninstall the previous version (if any) of the plugin
|
|
@@ -31,6 +30,11 @@ $ cordova plugin ls // List Cordova plugins
|
|
|
31
30
|
<script src="assets/js/unvired-db-worker.js"></script>
|
|
32
31
|
```
|
|
33
32
|
|
|
33
|
+
6. Make sure the file plugin is installed. If not, install the file plugin.
|
|
34
|
+
```
|
|
35
|
+
$ cordova plugin add cordova-plugin-file
|
|
36
|
+
```
|
|
37
|
+
|
|
34
38
|
# Building this plugin
|
|
35
39
|
|
|
36
40
|
This contains source code for Unvired Cordova Plugin. In order to test this plugin locally, generate a debug version by building using build-debug.xml
|
package/package.json
CHANGED
package/plugin.xml
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
<?xml version='1.0' encoding='utf-8'?>
|
|
2
|
-
<plugin id="cordova-plugin-unvired-universal-sdk" version="1.0.
|
|
2
|
+
<plugin id="cordova-plugin-unvired-universal-sdk" version="1.0.86" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
3
3
|
<name>UnviredSDK</name>
|
|
4
4
|
<dependency id="cordova-plugin-unvired-device" version="^1.0.4" />
|
|
5
5
|
<dependency id="cordova-plugin-unvired-electron-db" version="^0.0.27" />
|
|
6
|
-
<dependency id="cordova-plugin-unvired-
|
|
7
|
-
<dependency id="cordova-plugin-unvired-logger" version="^0.0.14" />
|
|
6
|
+
<dependency id="cordova-plugin-unvired-logger" version="^0.0.15" />
|
|
8
7
|
<dependency id="cordova-plugin-firebase-messaging" version="^8.0.1" />
|
|
9
8
|
|
|
10
9
|
<js-module name="UnviredSDK" src="www/kernel.js">
|