Skip to content Skip to sidebar Skip to footer

How To Ignore Facebook Android Application Installed On The Device, When Using Android-facebook Api?

I have a facebook login option in my android application. When there is no Facebook application installed on my device, this login works fine. But when the facebook application is

Solution 1:

Please update below code of your Login Button Click listener.

mFb.authorize(mActivity, mPermissions, Facebook.FORCE_DIALOG_AUTH,
            newLoginDialogListener());

instead of

mFb.authorize(mActivity, mPermissions, newLoginDialogListener());

And see below link for more information

Facebook Login Issue

Post a Comment for "How To Ignore Facebook Android Application Installed On The Device, When Using Android-facebook Api?"