react-native-netmera 1.7.2 → 1.7.3-beta01
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
CHANGED
|
@@ -210,9 +210,9 @@ export const onPushReceive = async (message) => {
|
|
|
210
210
|
|
|
211
211
|
```
|
|
212
212
|
// For receiving Media Push, you must add Netmera pods to top of your Podfile.
|
|
213
|
-
pod "Netmera", "3.23.
|
|
214
|
-
pod "Netmera/NotificationServiceExtension", "3.23.
|
|
215
|
-
pod "Netmera/NotificationContentExtension", "3.23.
|
|
213
|
+
pod "Netmera", "3.23.4-WithoutDependency"
|
|
214
|
+
pod "Netmera/NotificationServiceExtension", "3.23.4-WithoutDependency"
|
|
215
|
+
pod "Netmera/NotificationContentExtension", "3.23.4-WithoutDependency"
|
|
216
216
|
```
|
|
217
217
|
|
|
218
218
|
5. In order to use the widget URL callback, add these methods to between `@implementation AppDelegate` and `@end`.
|
package/RNNetmera.podspec
CHANGED
|
@@ -23,7 +23,7 @@ public class RNNetmera {
|
|
|
23
23
|
static void setNetmeraHeaders() {
|
|
24
24
|
ContentValues headerValues = new ContentValues();
|
|
25
25
|
headerValues.put("X-netmera-framework", "react");
|
|
26
|
-
headerValues.put("X-netmera-frameworkV", "1.7.
|
|
26
|
+
headerValues.put("X-netmera-frameworkV", "1.7.3");
|
|
27
27
|
Netmera.setNetmeraHeaders(headerValues);
|
|
28
28
|
}
|
|
29
29
|
|
package/ios/RNNetmera.m
CHANGED
|
@@ -55,7 +55,7 @@ NSString *const ERROR_MESSAGE_UPDATE_USER = @"Error occurred while updating user
|
|
|
55
55
|
|
|
56
56
|
+ (void)setNetmeraHeaders {
|
|
57
57
|
[Netmera setFramework:@"react"];
|
|
58
|
-
[Netmera setFrameworkVersion:@"1.7.
|
|
58
|
+
[Netmera setFrameworkVersion:@"1.7.3"];
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
+ (void)setPushDelegate:(NSObject<NetmeraPushDelegate> *)delegate {
|