summaryrefslogtreecommitdiffstats
path: root/platform/ios
diff options
context:
space:
mode:
authorLeonardo Demartino <deeleek@gmail.com>2024-03-17 02:39:16 -0300
committerLeonardo Demartino <deeleek@gmail.com>2024-03-17 02:39:16 -0300
commit3bdbf90f496913d417af8b58ea48bd2d22b2aabf (patch)
treeca2398fdc1a8566bc8aa6a60cca190b34d410f38 /platform/ios
parentfe01776f05b1787b28b4a270d53037a3c25f4ca2 (diff)
downloadredot-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.mm2
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) {