Facebook Login for Android App with release key

后端 未结 5 2175
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-24 04:31

I am trying to release my app on Google Play. I have a Facebook login in my app. Up until yesterday all was working fine till the time I was running the application with

5条回答
  •  心在旅途
    2020-12-24 04:39

    For Linux

    Open Terminal :

    For Debug Build

    keytool -exportcert -alias androiddebugkey -keystore debug.keystore | openssl sha1 -binary | openssl base64
    

    you wil find debug.keystore from ".android" folder copy it from and paste on desktop and run above command

    For release Build

    keytool -exportcert -alias  -keystore  | openssl sha1 -binary | openssl base64
    

    NOTE : Make sure In Both case it must ask for password. If it does not asks for password that means something is wrong in command.

提交回复
热议问题