i am trying to give final touches to my app. now i want that the back button on android device should be working. tried many things. it's giving different errors.
may be because i am writing my code at a wrong place. this is the code i tried in my init() method.
std::string os = s3eDeviceGetString(S3E_DEVICE_OS);
std::string osversion = s3eDeviceGetString(S3E_DEVICE_OS_VERSION);
CCLOG("os================================%s", os);
CCLOG("osVer=============================%s", osversion);
if(os=="WINDOWS")
{
s3eKeyboardUpdate();
bool a = (s3eKeyboardGetState (s3eKeyBack) & S3E_KEY_STATE_RELEASED);
bool b = (s3eKeyboardGetState (s3eKeyBack) & S3E_KEY_STATE_DOWN);
bool c = (s3eKeyboardGetState (s3eKeyBack) & S3E_KEY_STATE_PRESSED);
bool d = (s3eKeyboardGetState (s3eKeyBack) & S3E_KEY_STATE_UP);
if (a || b || c || d);
CCDirector::sharedDirector()->popScene();
}
else if(os=="ANDROID")
{
s3eKeyboardUpdate();
bool a = (s3eKeyboardGetState (s3eKeyAbsBSK) & S3E_KEY_STATE_RELEASED);
bool b = (s3eKeyboardGetState (s3eKeyAbsBSK) & S3E_KEY_STATE_DOWN);
bool c = (s3eKeyboardGetState (s3eKeyAbsBSK) & S3E_KEY_STATE_PRESSED);
bool d = (s3eKeyboardGetState (s3eKeyAbsBSK) & S3E_KEY_STATE_UP);
if (a || b || c || d);
CCDirector::sharedDirector()->popScene();
}