diff options
author | Leonardo Demartino <deeleek@gmail.com> | 2024-03-17 02:39:16 -0300 |
---|---|---|
committer | Leonardo Demartino <deeleek@gmail.com> | 2024-03-17 02:39:16 -0300 |
commit | 3bdbf90f496913d417af8b58ea48bd2d22b2aabf (patch) | |
tree | ca2398fdc1a8566bc8aa6a60cca190b34d410f38 /platform/ios | |
parent | fe01776f05b1787b28b4a270d53037a3c25f4ca2 (diff) | |
download | redot-engine-3bdbf90f496913d417af8b58ea48bd2d22b2aabf.tar.gz |
Fix AirPods routing when Play and Record category is used.
Diffstat (limited to 'platform/ios')
-rw-r--r-- | platform/ios/app_delegate.mm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/platform/ios/app_delegate.mm b/platform/ios/app_delegate.mm index 5a0c57be93..37d2696434 100644 --- a/platform/ios/app_delegate.mm +++ b/platform/ios/app_delegate.mm @@ -116,6 +116,8 @@ static ViewController *mainViewController = nil; } else if (sessionCategorySetting == SESSION_CATEGORY_PLAY_AND_RECORD) { category = AVAudioSessionCategoryPlayAndRecord; options |= AVAudioSessionCategoryOptionDefaultToSpeaker; + options |= AVAudioSessionCategoryOptionAllowBluetoothA2DP; + options |= AVAudioSessionCategoryOptionAllowAirPlay; } else if (sessionCategorySetting == SESSION_CATEGORY_PLAYBACK) { category = AVAudioSessionCategoryPlayback; } else if (sessionCategorySetting == SESSION_CATEGORY_RECORD) { |