pushwoosh-cordova-plugin 8.3.39 → 8.3.41
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.yml +2 -0
- package/README.md +2 -2
- package/example/newdemo/config.xml +1 -0
- package/example/newdemo/google-services.json +891 -0
- package/example/newdemo/package.json +4 -3
- package/example/newdemo/www/index.html +6 -0
- package/example/newdemo/www/js/index.js +64 -3
- package/package.json +1 -1
- package/plugin.xml +15 -6
- package/spec/add-voip-pod.js +49 -0
- package/src/android/src/com/pushwoosh/plugin/pushnotifications/PWCordovaCallEventListener.java +63 -0
- package/src/android/src/com/pushwoosh/plugin/pushnotifications/PushNotifications.java +244 -59
- package/src/ios/PushNotification.m +397 -39
- package/types/PushNotification.d.ts +10 -6
- package/www/PushNotification.js +139 -24
|
@@ -58,6 +58,8 @@ body:
|
|
|
58
58
|
label: Your Pushwoosh Cordova plugin version
|
|
59
59
|
description: Your version of the Cordova plugin integrated into the application. You may find it on the [releases page](https://github.com/Pushwoosh/pushwoosh-phonegap-plugin/releases)
|
|
60
60
|
options:
|
|
61
|
+
- 8.3.41
|
|
62
|
+
- 8.3.40
|
|
61
63
|
- 8.3.39
|
|
62
64
|
- 8.3.38
|
|
63
65
|
- 8.3.37
|
package/README.md
CHANGED
|
@@ -14,13 +14,13 @@ Cross-Platform push notifications by Pushwoosh for Cordova / PhoneGap
|
|
|
14
14
|
Using npm:
|
|
15
15
|
|
|
16
16
|
```
|
|
17
|
-
cordova plugin add pushwoosh-cordova-plugin@8.3.
|
|
17
|
+
cordova plugin add pushwoosh-cordova-plugin@8.3.41
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
Using git:
|
|
21
21
|
|
|
22
22
|
```
|
|
23
|
-
cordova plugin add https://github.com/Pushwoosh/pushwoosh-phonegap-plugin.git#8.3.
|
|
23
|
+
cordova plugin add https://github.com/Pushwoosh/pushwoosh-phonegap-plugin.git#8.3.41
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
### Guide
|