diff --git a/src/ios/APPBackgroundMode.m b/src/ios/APPBackgroundMode.m index 30c2e97..91e6640 100644 --- a/src/ios/APPBackgroundMode.m +++ b/src/ios/APPBackgroundMode.m @@ -106,6 +106,11 @@ * Let the app going to sleep. */ - (void) stopKeepingAwake { + + if (TARGET_IPHONE_SIMULATOR) { + NSLog(@"BackgroundMode: On simulator apps never pause in background!"); + } + [audioPlayer pause]; }