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

Update README.md #2

Merged
merged 1 commit into from
Aug 16, 2023
Merged
Changes from all commits
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
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,32 @@
flutter pub add ios_communication_notification
```

```terminal
flutter clean && flutter pub get
```
<br/>

- Config XCode

> Capabilities
1. Open your Project in XCode.
2. Click on `Runner`, then Target `Runner`
3. Click on Signing & Capabilities
4. Add Capability
5. Add Communication Notifications

> Info.plist
1. Open `Info.plist`
2. Add `NSUserActivityTypes` as type array
3. Add `INSendMessageIntent` as the element of the newly created array

<br/>

- Config AppDelegate Extension

1. Open `AppDelegate.swift`
2. Copy the below piece of code and add it at the end of the file

```swift
import UIKit
import ios_communication_notification
Expand Down