Skip to content
Open
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
10 changes: 9 additions & 1 deletion docs/main/guides/push-notifications-firebase.md
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,15 @@ Choose `pushextension` from the list of Targets then:
If you do not change the deployment target for your extension then images will not appear on devices on an older version of iOS.
:::

To add Firebase Messaging to the extension open your `Podfile` and add:
To add Firebase Messaging to the extension:

Using SPM:
- Select the `pushextension` Target
- Under `General`, `Frameworks and Libraries`, click the "Add items" button
- Add `FirebaseMessaging`

Using CocoaPods:
Open your `Podfile` and add:
```ruby
target 'pushextension' do
pod 'FirebaseMessaging'
Expand Down