applicationDidEnterBackground is not called when screen off with 3.0-b2

I print a log on AppDelegate::applicationDidEnterBackground and AppDelegate::applicationWillEnterForeground.

void AppDelegate::applicationDidEnterBackground() {
    log("AppDelegate::applicationDidEnterBackground");
}

void AppDelegate::applicationWillEnterForeground() {
    log("AppDelegate::applicationWillEnterForeground");
}

AppDelegate::applicationDidEnterBackground is not called when power(screen) off on device.
But AppDelegate::applicationWillEnterForeground is called when power(screen) on back.
So, I can’t stop background music.

I tested Galaxy S2(2.3) and Note 2(4.3) with latest commit on github develop branch.

1 Like