pushwoosh-cordova-plugin 6.0.1 → 6.1.1

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.
Files changed (78) hide show
  1. package/{MIT-LICENSE.txt → LICENSE.md} +0 -0
  2. package/README.md +20 -32
  3. package/README_PGB.md +32 -0
  4. package/package.json +1 -1
  5. package/package_pgb.json +29 -0
  6. package/plugin.xml +71 -82
  7. package/src/android/src/com/pushwoosh/plugin/internal/PhonegapPluginProvider.java +22 -0
  8. package/src/android/src/com/pushwoosh/plugin/pushnotifications/CustomFirebaseMessagingService.java +29 -0
  9. package/src/android/src/com/pushwoosh/plugin/pushnotifications/InboxUiStyleManager.java +136 -0
  10. package/src/android/src/com/pushwoosh/plugin/pushnotifications/PushNotifications.java +365 -387
  11. package/src/android/src/com/pushwoosh/plugin/pushnotifications/PushwooshNotificationServiceExtension.java +38 -0
  12. package/src/ios/PWBackward.h +25 -0
  13. package/src/ios/PWBackward.m +53 -0
  14. package/src/ios/PushNotification.m +409 -147
  15. package/src/ios/Pushwoosh.framework/Modules/module.modulemap +6 -0
  16. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWAppDelegate.h +20 -0
  17. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWGDPRManager.h +46 -0
  18. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWInAppManager.h +174 -0
  19. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWInbox.h +147 -0
  20. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWInlineInAppView.h +26 -0
  21. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWLog.h +23 -0
  22. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWMessaging.h +20 -0
  23. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWNotificationExtensionManager.h +33 -0
  24. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWRichMediaManager.h +118 -0
  25. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWRichMediaStyle.h +122 -0
  26. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PushNotificationManager.h +263 -151
  27. package/src/ios/Pushwoosh.framework/Versions/A/Headers/Pushwoosh.h +525 -0
  28. package/src/ios/Pushwoosh.framework/Versions/A/libPushwoosh.a +0 -0
  29. package/src/ios/PushwooshInboxBundle.bundle/Info.plist +0 -0
  30. package/src/ios/PushwooshInboxBundle.bundle/PWIInboxAttachmentViewController.nib +0 -0
  31. package/src/ios/PushwooshInboxBundle.bundle/PWIInboxMessageViewCell.nib +0 -0
  32. package/src/ios/PushwooshInboxBundle.bundle/PWIInboxViewController.nib +0 -0
  33. package/src/ios/PushwooshInboxBundle.bundle/errorMessage@2x.png +0 -0
  34. package/src/ios/PushwooshInboxBundle.bundle/inbox_icon.png +0 -0
  35. package/src/ios/PushwooshInboxBundle.bundle/noMessage@2x.png +0 -0
  36. package/src/ios/PushwooshInboxBundle.bundle/unread.png +0 -0
  37. package/src/ios/PushwooshInboxUI.framework/Modules/module.modulemap +6 -0
  38. package/src/ios/PushwooshInboxUI.framework/Versions/A/Headers/PWIInboxStyle.h +122 -0
  39. package/src/ios/PushwooshInboxUI.framework/Versions/A/Headers/PWIInboxUI.h +39 -0
  40. package/src/ios/PushwooshInboxUI.framework/Versions/A/Headers/PushwooshInboxUI.h +19 -0
  41. package/src/ios/PushwooshInboxUI.framework/Versions/A/libPushwooshInboxUI.a +0 -0
  42. package/src/windows/PushSDK/Newtonsoft.Json.dll +0 -0
  43. package/src/windows/PushSDK/PushSDK.winmd +0 -0
  44. package/src/windows/PushwooshPluginProxy.js +88 -74
  45. package/src/wp8/PushNotification.cs +14 -0
  46. package/src/wp8/PushSDK/PushSDK.dll +0 -0
  47. package/www/PushNotification.js +179 -45
  48. package/Documentation/files/PushNotification-js.html +0 -157
  49. package/Documentation/index/Classes.html +0 -33
  50. package/Documentation/index/Functions.html +0 -61
  51. package/Documentation/index/General.html +0 -65
  52. package/Documentation/index.html +0 -1
  53. package/Documentation/javascript/main.js +0 -841
  54. package/Documentation/javascript/prettify.js +0 -1526
  55. package/Documentation/javascript/searchdata.js +0 -92
  56. package/Documentation/search/ClassesP.html +0 -20
  57. package/Documentation/search/FunctionsA.html +0 -20
  58. package/Documentation/search/FunctionsC.html +0 -20
  59. package/Documentation/search/FunctionsG.html +0 -20
  60. package/Documentation/search/FunctionsO.html +0 -20
  61. package/Documentation/search/FunctionsP.html +0 -20
  62. package/Documentation/search/FunctionsR.html +0 -20
  63. package/Documentation/search/FunctionsS.html +0 -20
  64. package/Documentation/search/FunctionsU.html +0 -20
  65. package/Documentation/search/GeneralA.html +0 -20
  66. package/Documentation/search/GeneralC.html +0 -20
  67. package/Documentation/search/GeneralF.html +0 -20
  68. package/Documentation/search/GeneralG.html +0 -20
  69. package/Documentation/search/GeneralO.html +0 -20
  70. package/Documentation/search/GeneralP.html +0 -20
  71. package/Documentation/search/GeneralR.html +0 -20
  72. package/Documentation/search/GeneralS.html +0 -20
  73. package/Documentation/search/GeneralU.html +0 -20
  74. package/Documentation/search/NoResults.html +0 -15
  75. package/Documentation/styles/main.css +0 -828
  76. package/VERSION.md +0 -132
  77. package/push.gradle +0 -21
  78. package/src/ios/Pushwoosh.framework/Versions/A/Pushwoosh +0 -0
package/VERSION.md DELETED
@@ -1,132 +0,0 @@
1
- Current version: 6.0.1
2
- =========================
3
- Publish: [Android] Pushwoosh SDK 4.6.3 update
4
- Current version: 6.0.0
5
- =========================
6
- Unified registerDevice response
7
- Unified push-notificaion event data
8
- getRemoteNotificationStatus for Android
9
- clearLaunchNotificaion method
10
- Customizable preferences for foreground pushes and log level
11
- Call registerDevice error callback if notificaions are disabled on iOS
12
- Removed location tracking permissions
13
- Current version: 5.1.3
14
- =========================
15
- Publish: [Android] Pushwoosh SDK 4.3.3 update
16
- Current version: 5.1.2
17
- =========================
18
- Publish: gradle dependencies fixes
19
- Current version: 5.1.1
20
- =========================
21
- Publish: [iOS] stability fixes
22
- Current version: 5.1.0
23
- =========================
24
- Publish: getTags, setTags for windows platform
25
- Current version: 5.0.3
26
- =========================
27
- Publish: Minimum version requirements for play-services-* and support-v4 references
28
- Current version: 5.0.2
29
- =========================
30
- Publish: Use Pushwoosh.aar as gradle reference
31
- Current version: 5.0.1
32
- =========================
33
- Publish: Fix missing module cache warnings
34
- Current version: 5.0.0
35
- =========================
36
- Publish: In-App Messages and Rich Media support
37
- Current version: 4.2.2
38
- =========================
39
- New plugin id (same as npm package name) to make it work on ionic.
40
- Current version: 4.2.1
41
- =========================
42
- Set cordova id to pushwoosh-cordova-plugin
43
- Current version: 4.2.0
44
- =========================
45
- Publish: Fix issue 149 with [INSTALL_FAILED_CONFLICTING_PROVIDER]
46
- Current version: 4.1.1
47
- =========================
48
- Publish: WP8 Newtonsoft.Json.dll update
49
- Current version: 4.1.0
50
- =========================
51
- Android location tracking and geofencing
52
- iOS Pushwoosh.framework update
53
- WP8 plugin update
54
- Current version: 4.0.0
55
- =========================
56
- windows platform support
57
- Current version: 3.6.16
58
- =========================
59
- Add armv7s arch for iOS
60
- Current version: 3.6.15
61
- =========================
62
- Fixed https://github.com/Pushwoosh/pushwoosh-ios-sdk/issues/25
63
- Current version: 3.6.14
64
- =========================
65
- Fixed double alerts on iOS9
66
- Current version: 3.6.13
67
- =========================
68
- Fixed https://github.com/Pushwoosh/pushwoosh-phonegap-3.0-plugin/issues/133
69
- Current version: 3.6.12
70
- =========================
71
- Fixed https://github.com/Pushwoosh/pushwoosh-phonegap-3.0-plugin/issues/132
72
- Current version: 3.6.11
73
- =========================
74
- Application icon badge number for Android
75
- Current version: 3.6.10
76
- =========================
77
- Actual fixes for 3.6.8 and 3.6.9
78
- Current version: 3.6.9
79
- =========================
80
- fixed https://github.com/Pushwoosh/pushwoosh-phonegap-3.0-plugin/issues/129
81
- Current version: 3.6.8
82
- =========================
83
- Fixed XCode 7 warnings
84
- iOS log level management
85
- Current version: 3.6.7
86
- =========================
87
- Remote notification tag identifier for Android
88
- Current version: 3.6.6
89
- =========================
90
- iOS 9 support
91
- Current version: 3.6.5
92
- =========================
93
- Fixed plugin incompatibility
94
- Current version: 3.6.4
95
- =========================
96
- Pushwoosh library update
97
- Current version: 3.6.3
98
- =========================
99
- Using Google Play Services and Android Support v4 libraries
100
- Current version: 3.6.2
101
- =========================
102
- plugin.xml update
103
- Current version: 3.6.1
104
- =========================
105
- Pushwoosh SDK update
106
- Current version: 3.6.0
107
- =========================
108
- Android push priority, visibility and badges support
109
- Current version: 3.5.9
110
- =========================
111
- Updated to latest SDK
112
- Current version: 3.5.8
113
- =========================
114
- fix: https://github.com/Pushwoosh/pushwoosh-phonegap-3.0-plugin/issues/110
115
- Current version: 3.5.7
116
- =========================
117
- PW_NO_BROADCAST_PUSH Android Manifest flag
118
- Code style fixes
119
- Current version: 3.5.6
120
- =========================
121
- Publishing to NPM activated.
122
- Current version: 3.5.5
123
- =========================
124
- publishing to npm
125
- Current version: 3.5.4
126
- =========================
127
- getLaunchNotification method implemented (iOS, Android)
128
- Current version: 3.5.3
129
- =========================
130
- Updated iOS/Android SDK
131
- Current version: 3.5.2
132
- =========================
package/push.gradle DELETED
@@ -1,21 +0,0 @@
1
- import java.util.regex.Pattern
2
-
3
- def doExtractStringFromManifest(name) {
4
- def manifestFile = file(android.sourceSets.main.manifest.srcFile)
5
- def pattern = Pattern.compile(name + "=\"(.*?)\"")
6
- def matcher = pattern.matcher(manifestFile.getText())
7
- matcher.find()
8
- return matcher.group(1)
9
- }
10
-
11
- android {
12
- sourceSets {
13
- main {
14
- manifest.srcFile 'AndroidManifest.xml'
15
- }
16
- }
17
-
18
- defaultConfig {
19
- applicationId = doExtractStringFromManifest("package")
20
- }
21
- }