Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

* Fixed an issue where the initially set CarPlay navigation camera values were being overwritten when updates to this property were disabled.

### Audio

* Fixed an issue that audio sessions activated by the SDK (for playback of voice instructions and reroute sound) were not interrupting spoken audio content playback from other applications (e.g. Podcasts).

## v2.20.2

### Routing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ final class AVAudioSessionHelper {
let settings: Settings = Settings(
category: .playback,
mode: .voicePrompt,
options: [.duckOthers, .mixWithOthers]
options: [.interruptSpokenAudioAndMixWithOthers, .duckOthers]
)

private init() {}
Expand Down