<!-- mobian-agent-page publisher="dailydev" canonical="https://daily.dev/posts/how-to-add-rich-push-notifications-in-expo-ios-images--7cdwywhys" -->

---
title: How to Add Rich Push Notifications in Expo (iOS Images)
description: A tutorial on implementing rich push notifications with image support on iOS using Expo. Since Android supports images out of the box, the focus is on adding a...
canonical: https://daily.dev/posts/how-to-add-rich-push-notifications-in-expo-ios-images--7cdwywhys
twitter:card: summary_large_image
twitter:site: @dailydotdev
og:type: website
og:site_name: daily.dev
og:title: How to Add Rich Push Notifications in Expo (iOS Images) | daily.dev
og:description: A tutorial on implementing rich push notifications with image support on iOS using Expo. Since Android supports images out of the box, the focus is on adding a...
og:url: https://daily.dev/posts/how-to-add-rich-push-notifications-in-expo-ios-images--7cdwywhys
og:image: https://api.daily.dev/og/posts/7CDWYwHyS.png
og:image:alt: How to Add Rich Push Notifications in Expo (iOS Images)
og:image:width: 1200
og:image:height: 630
og:locale: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# How to Add Rich Push Notifications in Expo (iOS Images)

**[Code with Beto](https://daily.dev/sources/codewithbeto)** · 6 min read · 0 upvotes · 0 comments

## Summary

A tutorial on implementing rich push notifications with image support on iOS using Expo. Since Android supports images out of the box, the focus is on adding a notification service extension for iOS using the `expo-apple-targets` package by Evan Bacon. The process involves running `npx create-target`, selecting the notification service target, replacing the generated Swift file with one from a reference pull request, running `expo prebuild`, and signing the extension in Xcode. Also covers updating the Expo Server SDK to support the `richContentImage` field when sending notifications from a Node server.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://www.youtube.com/watch?v=ycYM_zKEF_4>

---

Tags: [#ios](https://daily.dev/tags/ios), [#swift](https://daily.dev/tags/swift), [#react-native](https://daily.dev/tags/react-native)

[View this post on daily.dev](https://daily.dev/posts/how-to-add-rich-push-notifications-in-expo-ios-images--7cdwywhys)

```json
{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://daily.dev/#organization","name":"daily.dev","url":"https://daily.dev","logo":{"@type":"ImageObject","url":"https://daily.dev/apple-touch-icon.png","width":180,"height":180},"sameAs":["https://twitter.com/dailydotdev","https://github.com/dailydotdev","https://www.linkedin.com/company/daily-dev-ltd"]},{"@type":"WebSite","@id":"https://daily.dev/#website","url":"https://daily.dev","name":"daily.dev","publisher":{"@id":"https://daily.dev/#organization"},"potentialAction":{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://daily.dev/search?q={search_term_string}"},"query-input":"required name=search_term_string"}}]}
{"@context":"https://schema.org","@type":"TechArticle","headline":"How to Add Rich Push Notifications in Expo (iOS Images)","url":"https://daily.dev/posts/how-to-add-rich-push-notifications-in-expo-ios-images--7cdwywhys","mainEntityOfPage":{"@type":"WebPage","@id":"https://daily.dev/posts/how-to-add-rich-push-notifications-in-expo-ios-images--7cdwywhys"},"datePublished":"2026-03-22T11:31:11.016Z","dateModified":"2026-03-22T11:35:59.213Z","description":"A tutorial on implementing rich push notifications with image support on iOS using Expo. Since Android supports images out of the box, the focus is on adding a...","image":"https://i.ytimg.com/vi/ycYM_zKEF_4/sddefault.jpg","thumbnailUrl":"https://i.ytimg.com/vi/ycYM_zKEF_4/sddefault.jpg","isAccessibleForFree":true,"articleSection":"Code with Beto","inLanguage":"en","publisher":{"@type":"Organization","name":"daily.dev","url":"https://daily.dev","logo":{"@type":"ImageObject","url":"https://daily.dev/apple-touch-icon.png","width":180,"height":180}},"author":{"@type":"Organization","name":"Code with Beto","logo":"https://media.daily.dev/image/upload/s--8oKUFd2X--/f_auto,q_auto/v1774179046/logos/codewithbeto?_a=BAMAMiWQ0","url":"https://daily.dev/sources/codewithbeto"},"commentCount":0,"discussionUrl":"https://daily.dev/posts/how-to-add-rich-push-notifications-in-expo-ios-images--7cdwywhys","interactionStatistic":[{"@type":"InteractionCounter","interactionType":{"@type":"LikeAction"},"userInteractionCount":0},{"@type":"InteractionCounter","interactionType":{"@type":"CommentAction"},"userInteractionCount":0}],"keywords":"ios,swift,react-native","timeRequired":"PT6M","video":{"@type":"VideoObject","name":"How to Add Rich Push Notifications in Expo (iOS Images)","description":"A tutorial on implementing rich push notifications with image support on iOS using Expo. Since Android supports images out of the box, the focus is on adding a...","thumbnailUrl":"https://i.ytimg.com/vi/ycYM_zKEF_4/sddefault.jpg","uploadDate":"2026-03-22T11:31:11.016Z","duration":"PT6M","url":"https://api.daily.dev/r/7CDWYwHyS","embedUrl":"https://www.youtube.com/embed/ycYM_zKEF_4"}}
{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://daily.dev"},{"@type":"ListItem","position":2,"name":"Code with Beto","item":"https://daily.dev/sources/codewithbeto"},{"@type":"ListItem","position":3,"name":"How to Add Rich Push Notifications in Expo (iOS Images)"}]}
```

