I\'m switching some Android Facebook code from an Activity to a Fragment. Prior to the switch everything worked fine, but now the
I have downloaded the latest version of Facebook SDK and I have the same problem, the solution of gcl1 works fine but I have to do more things on activity result so I have made this on the parent activity:
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (mTargetFragment != null) {
mTargetFragment.onActivityResult(requestCode, resultCode, data);
}
}