From 7041b6c297648527af7b5d19e1003120dc4e4d74 Mon Sep 17 00:00:00 2001 From: Savitha Rudramuni <86474129+savitha-rudramuni@users.noreply.github.com> Date: Thu, 30 Jun 2022 14:08:12 +0530 Subject: [PATCH] Update README.md updated the import statement --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 86b4035..1b52c48 100644 --- a/README.md +++ b/README.md @@ -182,6 +182,20 @@ After installing plugin you need to install cocoapods, - Select the root project and Under Capabilites add the "Push Notifications" and "Background Modes". ![Capability Image](./img/ios_add_capability.png "Capabilty Image") +- Add below Import statements in `AppDelegate.h`. + +``` +#import +#import + +``` +- AppDelegate needs to Conform UNUserNotificationCenterDelegate protocol in `AppDelegate.h` , + +``` +@interface AppDelegate : UIResponder + +``` + - Implement the below delegate methods in `AppDelegate.m`. ```