When I tap an FB Connect button, the standard FB login screen comes up. With my iOS version of the app, if I close this FB login screen without entering FB credential and return to my app, the app recognizes this and resume without any problem. However, with the Android version of the same app, if I close the FB login screen without entering FB credential, I get the repeat of the following on my terminal forever and ever until I force kill the app:
I/Corona ( 7674): event.name = fbconnect
I/Corona ( 7674): event.type = session
I/Corona ( 7674): event.token = nil
I/Corona ( 7674): isError = false
I/Corona ( 7674): didComplete = nil
I/Corona ( 7674): Session Status = loginCancelled
Note: The terminal command I use to monitor this is ./adb logcat Corona:V *:S
I tried this on both Daily Build 1041 and 1054, and they behave exactly the same.
I tested this on FBTest project I filed with CoronaLabs a while back, and it has similar effect, except the terminal output is slightly different. The following repeatedly rolls out in rapid succession.
I/Corona ( 9629): event.name = fbconnect
I/Corona ( 9629): event.type = session
I/Corona ( 9629): event.token = nil
I/Corona ( 9629): isError = false
I/Corona ( 9629): didComplete = nil
I/Corona ( 9629): Session Status: logout
Is there a different set of code for Android build that I need to add to handle Facebook cancellation/logout event to solve this problem?
Naomi