pushwoosh-react-native-plugin 6.1.28 → 6.1.29
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/package.json
CHANGED
package/src/android/build.gradle
CHANGED
|
@@ -373,6 +373,10 @@ RCT_EXPORT_METHOD(performAction:(NSString*)code) {
|
|
|
373
373
|
[[Pushwoosh sharedInstance] handlePushRegistrationFailure:error];
|
|
374
374
|
}
|
|
375
375
|
|
|
376
|
+
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {
|
|
377
|
+
[[Pushwoosh sharedInstance] handlePushReceived:userInfo];
|
|
378
|
+
}
|
|
379
|
+
|
|
376
380
|
#pragma mark - UNUserNotificationCenter Delegate Methods
|
|
377
381
|
#pragma mark -
|
|
378
382
|
|