android-simple-facebook
android-simple-facebook copied to clipboard
A small doubt in onActivityResult() method.
Hello Roman k. and everybody!
First, thank you for this great library (now, my development w/ the Facebook API has become very easy!).
I have a small doubt :
In onActivityResult of sample project you code
mSimpleFacebook.onActivityResult(requestCode, resultCode, data);
under
super.onActivityResult(requestCode, resultCode, data);
And, here, you write
mSimpleFacebook.onActivityResult(requestCode, resultCode, data);
above
super.onActivityResult(requestCode, resultCode, data);
The question is: Is there any difference between the two ways of implementation?
I will be grateful if you can clarify this.