How to change the default app icon on the Facebook login authentication screen

Plain and simple. I need to change the default application icon that is displayed to the user when he is on the authentication screen when entering the application using the Facebook SDK.

enter image description here

What I tried:

www.developer.facebook.com -> My Apps -> App Details -> Icons

Any help is appreciated! Thank you for your time!

+6
source share
2 answers

Unfortunately, it seems that you cannot configure the gear icon.

As a Facebook team member at developers.facebook.com stated:

This is by design. The confirmation dialog does not support the application. icon, but instead uses an icon other than the application.

+6
source

@ Alexander Norway . Unfortunately, your own screen (icon) is not supported by Facebook . Actually

 facebook.authorize(this, PERMISSIONS, Facebook.FORCE_DIALOG_AUTH, new LoginDialogListener()); 

A method call will provide the user with the following dialog box:

enter image description here

For more information, check out the social integration section of the Android documentation .

This is how the facebook authorization process will work.

enter image description here

+3
source

All Articles