First, a big “thanks” to those of you supporting this project.
I used the stock script for creating an android project. The app itself is running find and doing what it is supposed to but when testing on a Nook Tablet, pressing the home button has no effect. Clicking it twice quickly will break out of my app to the Nook’s menu.
The AppDelegate has the following code (I haven’t changed it)…
void AppDelegate::applicationDidEnterBackground()
{
CCDirector::sharedDirector()->pause();
SimpleAudioEngine::sharedEngine()->pauseBackgroundMusic();
}
// this function will be called when the app is active again
void AppDelegate::applicationWillEnterForeground()
{
CCDirector::sharedDirector()->resume();
SimpleAudioEngine::sharedEngine()->resumeBackgroundMusic();
}
Any thoughts on what I might be overlooking?