-
Notifications
You must be signed in to change notification settings - Fork 349
Part 2 of handling session #200
base: master
Are you sure you want to change the base?
Conversation
I added both your patches and still can't get a successful login with a new app. It looks like you're missing some basic formatting too, ie missing ; and there is no variable defined as uiHelper, maybe you mean uiLifecycleHelper Curious if you got this to work, was your app created before april 30 2014? I think that is the cut off for using the 1.0 v 2.0 graph backend. |
@konigsoft First of all thanks a lot for contribution!
|
* code to handle session login state | ||
*/ | ||
public boolean onResume() { | ||
uiHelper.onResume(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
uiHelper
- no such member in this class. It won't compile.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mix the variable from facebook and your code
the correct syntax should be (and the same for the other) uiLifecycleHelper.onResume();
@sromku I have try your code but as I said i was facing the issue of getting a login state to false when i close my app and open it back. |
@konigsoft let me go over the code and make some tests. Don't create a new pull request meanwhile. If I see that it works good, I will merge your pull request and do few updates. Thanks anyway! I will update you soon. |
No description provided.