Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating the plugin with last frameworks and features #1021

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Remove Firebase Messaging
vash15 committed Nov 18, 2020
commit b8ccdaa09fd44955672e7aa717c44c8d3aa79730
5 changes: 4 additions & 1 deletion src/ios/AppDelegate+FirebasePlugin.m
Original file line number Diff line number Diff line change
@@ -128,6 +128,7 @@ - (void)application:(UIApplication *)application didRegisterForRemoteNotificatio
}
*/

/*
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo {
NSDictionary *mutableUserInfo = [userInfo mutableCopy];

@@ -138,8 +139,9 @@ - (void)application:(UIApplication *)application didReceiveRemoteNotification:(N

[FirebasePlugin.firebasePlugin sendNotification:mutableUserInfo];
}
*/


/*
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo
fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {

@@ -151,6 +153,7 @@ - (void)application:(UIApplication *)application didReceiveRemoteNotification:(N
completionHandler(UIBackgroundFetchResultNewData);
[FirebasePlugin.firebasePlugin sendNotification:mutableUserInfo];
}
*/


- (BOOL)application:(UIApplication *)application continueUserActivity:(nonnull NSUserActivity *)userActivity restorationHandler: