I have some strange issue regarding Facebook & Linkedin integration,
I have integrated login through Facebook & LinkedIn in my application.
Login Working fine in debug & release build. But when I upload my application in beta release with signed apk(release build), login functionality is not working neither Facebook nor LinkedIn.
I have generated key hash using
FOR DEBUG
keytool -exportcert -alias androiddebugkey -keystore debug.keystore | openssl sha1 -binary | openssl base64
FOR RELEASE
keytool -exportcert -alias <aliasName> -keystore <keystoreFilePath> | openssl sha1 -binary | openssl base64
I am getting Invalid key hash.
error.
May be it helps you : https://stackoverflow.com/a/44782435/6016830 – himangi May 07 '18 at 07:38