pushwoosh-cordova-plugin 6.1.0 → 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 (79) 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 -85
  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 +339 -388
  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 -158
  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 +171 -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 -138
  77. package/push.gradle +0 -21
  78. package/src/android/src/com/pushwoosh/plugin/pushnotifications/NotificationFactory.java +0 -29
  79. package/src/ios/Pushwoosh.framework/Versions/A/Pushwoosh +0 -0
package/VERSION.md DELETED
@@ -1,138 +0,0 @@
1
- Current version: 6.1.0
2
- =========================
3
- Publish: Push notification receive event
4
- Current version: 6.0.2
5
- =========================
6
- Publish: [Android] Wrap special characters when evaluating url statement
7
- Current version: 6.0.1
8
- =========================
9
- Publish: [Android] Pushwoosh SDK 4.6.3 update
10
- Current version: 6.0.0
11
- =========================
12
- Unified registerDevice response
13
- Unified push-notificaion event data
14
- getRemoteNotificationStatus for Android
15
- clearLaunchNotificaion method
16
- Customizable preferences for foreground pushes and log level
17
- Call registerDevice error callback if notificaions are disabled on iOS
18
- Removed location tracking permissions
19
- Current version: 5.1.3
20
- =========================
21
- Publish: [Android] Pushwoosh SDK 4.3.3 update
22
- Current version: 5.1.2
23
- =========================
24
- Publish: gradle dependencies fixes
25
- Current version: 5.1.1
26
- =========================
27
- Publish: [iOS] stability fixes
28
- Current version: 5.1.0
29
- =========================
30
- Publish: getTags, setTags for windows platform
31
- Current version: 5.0.3
32
- =========================
33
- Publish: Minimum version requirements for play-services-* and support-v4 references
34
- Current version: 5.0.2
35
- =========================
36
- Publish: Use Pushwoosh.aar as gradle reference
37
- Current version: 5.0.1
38
- =========================
39
- Publish: Fix missing module cache warnings
40
- Current version: 5.0.0
41
- =========================
42
- Publish: In-App Messages and Rich Media support
43
- Current version: 4.2.2
44
- =========================
45
- New plugin id (same as npm package name) to make it work on ionic.
46
- Current version: 4.2.1
47
- =========================
48
- Set cordova id to pushwoosh-cordova-plugin
49
- Current version: 4.2.0
50
- =========================
51
- Publish: Fix issue 149 with [INSTALL_FAILED_CONFLICTING_PROVIDER]
52
- Current version: 4.1.1
53
- =========================
54
- Publish: WP8 Newtonsoft.Json.dll update
55
- Current version: 4.1.0
56
- =========================
57
- Android location tracking and geofencing
58
- iOS Pushwoosh.framework update
59
- WP8 plugin update
60
- Current version: 4.0.0
61
- =========================
62
- windows platform support
63
- Current version: 3.6.16
64
- =========================
65
- Add armv7s arch for iOS
66
- Current version: 3.6.15
67
- =========================
68
- Fixed https://github.com/Pushwoosh/pushwoosh-ios-sdk/issues/25
69
- Current version: 3.6.14
70
- =========================
71
- Fixed double alerts on iOS9
72
- Current version: 3.6.13
73
- =========================
74
- Fixed https://github.com/Pushwoosh/pushwoosh-phonegap-3.0-plugin/issues/133
75
- Current version: 3.6.12
76
- =========================
77
- Fixed https://github.com/Pushwoosh/pushwoosh-phonegap-3.0-plugin/issues/132
78
- Current version: 3.6.11
79
- =========================
80
- Application icon badge number for Android
81
- Current version: 3.6.10
82
- =========================
83
- Actual fixes for 3.6.8 and 3.6.9
84
- Current version: 3.6.9
85
- =========================
86
- fixed https://github.com/Pushwoosh/pushwoosh-phonegap-3.0-plugin/issues/129
87
- Current version: 3.6.8
88
- =========================
89
- Fixed XCode 7 warnings
90
- iOS log level management
91
- Current version: 3.6.7
92
- =========================
93
- Remote notification tag identifier for Android
94
- Current version: 3.6.6
95
- =========================
96
- iOS 9 support
97
- Current version: 3.6.5
98
- =========================
99
- Fixed plugin incompatibility
100
- Current version: 3.6.4
101
- =========================
102
- Pushwoosh library update
103
- Current version: 3.6.3
104
- =========================
105
- Using Google Play Services and Android Support v4 libraries
106
- Current version: 3.6.2
107
- =========================
108
- plugin.xml update
109
- Current version: 3.6.1
110
- =========================
111
- Pushwoosh SDK update
112
- Current version: 3.6.0
113
- =========================
114
- Android push priority, visibility and badges support
115
- Current version: 3.5.9
116
- =========================
117
- Updated to latest SDK
118
- Current version: 3.5.8
119
- =========================
120
- fix: https://github.com/Pushwoosh/pushwoosh-phonegap-3.0-plugin/issues/110
121
- Current version: 3.5.7
122
- =========================
123
- PW_NO_BROADCAST_PUSH Android Manifest flag
124
- Code style fixes
125
- Current version: 3.5.6
126
- =========================
127
- Publishing to NPM activated.
128
- Current version: 3.5.5
129
- =========================
130
- publishing to npm
131
- Current version: 3.5.4
132
- =========================
133
- getLaunchNotification method implemented (iOS, Android)
134
- Current version: 3.5.3
135
- =========================
136
- Updated iOS/Android SDK
137
- Current version: 3.5.2
138
- =========================
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
- }
@@ -1,29 +0,0 @@
1
- package com.pushwoosh.plugin.pushnotifications;
2
-
3
- import com.pushwoosh.internal.PushManagerImpl;
4
- import com.pushwoosh.notification.DefaultNotificationFactory;
5
- import com.pushwoosh.notification.PushData;
6
-
7
- import org.json.JSONObject;
8
-
9
- public class NotificationFactory extends DefaultNotificationFactory
10
- {
11
- private static PushNotifications mPlugin;
12
-
13
- public void setPlugin(PushNotifications plugin)
14
- {
15
- mPlugin = plugin;
16
- }
17
-
18
- @Override
19
- public void onPushReceived(PushData pushData)
20
- {
21
- super.onPushReceived(pushData);
22
-
23
- if (mPlugin != null)
24
- {
25
- JSONObject data = PushManagerImpl.bundleToJSON(pushData.getExtras());
26
- mPlugin.doOnPushReceived(data.toString());
27
- }
28
- }
29
- }