From bc285b2ba40f8f254a0060194302453a8698ed40 Mon Sep 17 00:00:00 2001 From: volzhs Date: Mon, 6 Nov 2017 20:13:36 +0900 Subject: [PATCH] Prevent to stop music in another background app on iOS --- platform/iphone/app_delegate.mm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/platform/iphone/app_delegate.mm b/platform/iphone/app_delegate.mm index a4bc4de18f..e2cb603560 100644 --- a/platform/iphone/app_delegate.mm +++ b/platform/iphone/app_delegate.mm @@ -632,6 +632,9 @@ static int frame_count = 0; mainViewController = view_controller; + // prevent to stop music in another background app + [[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryAmbient error:nil]; + #ifdef MODULE_GAME_ANALYTICS_ENABLED printf("********************* didFinishLaunchingWithOptions\n"); if (!Globals::get_singleton()->has("mobileapptracker/advertiser_id")) {