Browse Source

Merge pull request #12697 from volzhs/dont-stop-music

Prevent to stop music in another background app on iOS
Rémi Verschelde 7 years ago
parent
commit
9493d7b218
1 changed files with 3 additions and 0 deletions
  1. 3 0
      platform/iphone/app_delegate.mm

+ 3 - 0
platform/iphone/app_delegate.mm

@@ -632,6 +632,9 @@ static int frame_count = 0;
 
 
 	mainViewController = view_controller;
 	mainViewController = view_controller;
 
 
+	// prevent to stop music in another background app
+	[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryAmbient error:nil];
+
 #ifdef MODULE_GAME_ANALYTICS_ENABLED
 #ifdef MODULE_GAME_ANALYTICS_ENABLED
 	printf("********************* didFinishLaunchingWithOptions\n");
 	printf("********************* didFinishLaunchingWithOptions\n");
 	if (!Globals::get_singleton()->has("mobileapptracker/advertiser_id")) {
 	if (!Globals::get_singleton()->has("mobileapptracker/advertiser_id")) {