Skip to content

Commit 9fe3e4b

Browse files
eidan66mikehardy
andauthored
docs(messaging): add use_frameworks to notification images Podfile code snippet (#7745)
* Update ios-notification-images.md Adding: ``` use_frameworks! :linkage => :static ``` Because we use it on our main target and it solve this error: ``` [!] Unable to integrate the following embedded targets with their respective host targets (a host target is a "parent" target which embeds a "child" target like a framework or extension): - XXX (true) and ImageNotification (false) do not both set use_frameworks!. ``` * chore: Update ios-notification-images.md * Update docs/messaging/ios-notification-images.md --------- Co-authored-by: Mike Hardy <[email protected]>
1 parent e724a46 commit 9fe3e4b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/messaging/ios-notification-images.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ Ensure that your new extension has access to Firebase/Messaging pod by adding it
3333

3434
```Ruby
3535
target 'ImageNotification' do
36-
pod 'Firebase/Messaging', '~> VERSION_NUMBER' # eg 6.31.0
36+
use_frameworks! :linkage => :static
37+
pod 'Firebase/Messaging'
3738
end
3839
```
3940

0 commit comments

Comments
 (0)