Skip to content

Commit

Permalink
Merge pull request #53 from oracle/ios_readmechange
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
neerhaj authored Jul 5, 2022
2 parents 6b3dfbe + 7041b6c commit ea3927e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <PushIOManager/PushIOManager.h>
#import <UserNotifications/UserNotifications.h>
```
- AppDelegate needs to Conform UNUserNotificationCenterDelegate protocol in `AppDelegate.h` ,

```
@interface AppDelegate : UIResponder <UIApplicationDelegate,UNUserNotificationCenterDelegate>
```

- Implement the below delegate methods in `AppDelegate.m`.

```
Expand Down

0 comments on commit ea3927e

Please sign in to comment.