Sumit Patel
Sumit Patel

Reputation: 2587

Facebook android native application not working on actual device

I developed an application which uses we can login to facebook and the logged user details can be stored. it is working fine when we run the application on emulator , but when we run the same application on android device it does not run .It only show the loading again and again but not showing the login window.

Overall application (i.e. facebook login window, returning the info of user ) is working well on different emulators but on actual device not even opening the login window it's just showing loading...

Upvotes: 3

Views: 1009

Answers (1)

Dipak Keshariya
Dipak Keshariya

Reputation: 22291

Please Update below code of your application, it will solve your problem.

public void loginAndPostToWall() {
    facebook.authorize(this, PERMISSIONS, Facebook.FORCE_DIALOG_AUTH,
            new LoginDialogListener());
}

Upvotes: 7

Related Questions