Skip to content Skip to sidebar Skip to footer

Android Facebook Sdk Appinvitedialog Callback Not Working

Hey my friends i have a problem in the callback of the AppInviteDialog its not working i try many thing but without a result please help me : public void openDialogInvite(Activity

Solution 1:

Did you invoked the CallbackManager into the onActivityResult method?

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult( requestCode, resultCode, data );
    callbackManager.onActivityResult( requestCode, resultCode, data );
}

Post a Comment for "Android Facebook Sdk Appinvitedialog Callback Not Working"