In the new now playing framework how should push notifications be configured

Asked on 2026-06-16

1 search

In Meet the Now Playing framework, push notifications for remote media sessions should be configured as part of the app extension-based Remote Media Sessions API:

  • Your server sends updates through Apple Push Notification service (APNs).
  • The push notification payload carries the updated remote session state.
  • The system uses that push to launch the app extension and pass in the updated state.
  • Your app extension then updates the session representation shown in Now Playing.

The key setup shown in the session is:

  • Create an app extension conforming to RemoteMediaSessionExtension
  • Use the NowPlaying RemoteMediaSessionExtension configuration
  • Ensure your server is set up to send APNs pushes for state changes

So, in short: configure the extension for remote media sessions, and have your server send APNs notifications containing the updated state.