---
title: Playing Background Audio
framework: WatchKit
role: article
role_heading: Article
platforms: []
path: watchkit/storyboard_support/playing_background_audio
---

# Playing Background Audio

Enable background audio in your app to provide a seamless playback experience.

## Overview

While most watchOS apps are optimized for quick interactions, apps that play audio content should continue playing even after the user lowers their wrists or navigates to a new app. Your app needs to play audio in the background in order to provide this seamless playback experience.

To play background audio:

1. Enable the Audio Background Mode.
2. Configure and Activate the audio session.
3. Start playing.

### Enable the Audio Background Mode

First, you must enable the Audio Background Mode capability for your WatchKit extension, as shown in [Figure 1](playing_background_audio.md).

![]()

This step sets the `UIBackgroundModes` key in your extension’s `Info.plist` file.

### Configure and Activate the Audio Session

Before you can play audio, you need to set up and activate the audio session.

Start by setting the session’s category to [playback](../../avfaudio/avaudiosession/category-swift.struct/playback.md), and the route policy to [AVAudioSession.RouteSharingPolicy.longFormAudio](../../avfaudio/avaudiosession/routesharingpolicy-swift.enum/longformaudio.md).

```swift
try session.setCategory(.playback,
                        mode: .default,
                        policy: .longFormAudio,
                        options: [])
```

Next, activate the session, by calling the [activate(options:completionHandler:)](../../avfaudio/avaudiosession/activate(options:completionhandler:).md) method.

```swift
try await session.activate()
```

This method sets up the audio route asynchronously before activating your session. watchOS requires a Bluetooth audio route for long-form audio. If necessary, the system presents an audio route picker to the user, letting them choose the Bluetooth route (see [Figure 2](playing_background_audio.md)).

![]()

In general, if the user has previously selected a Bluetooth route or if AirPods or other W1-equipped Bluetooth headphones are nearby, the system picks the audio route automatically without displaying a picker view to the user. If no applicable Bluetooth route is selected (either automatically or by the user), the system passes an error to the completion handler.

### Start Playing

The [activate(options:completionHandler:)](../../avfaudio/avaudiosession/activate(options:completionhandler:).md) method calls its completion handler as soon as a Bluetooth route is selected or when an error occurs. Check for errors in the completion handler. If no errors occurred, you can begin playing your audio content.

The code listing below shows all the steps needed to set up the session, activate it, and begin playing.

```swift
// Set up the session.
let session = AVAudioSession.sharedInstance()

do {
    try session.setCategory(.playback,
                            mode: .default,
                            policy: .longFormAudio,
                            options: [])
} catch {
    fatalError("Unable to configure the audio session: \(error)")
}

// Set up the player.
let player: AVAudioPlayer
do {
    player = try AVAudioPlayer(data: audioData)
} catch {
    print("Unable to set up the audio player: \(error)")
    // Handle the error here.
    return
}

// Activate and request the route.
do {
    try await session.activate()
} catch {
    print("Unable to activate the audio session: \(error)")
    return
}

// Play the audio file.
player.play()
```

## See Also

### Background sessions

- [Enabling Background Sessions](../enabling-background-sessions.md)
- [WKBackgroundModes](../../bundleresources/information-property-list/wkbackgroundmodes.md)
- [UIBackgroundModes](../../bundleresources/information-property-list/uibackgroundmodes.md)
