The problem is that you are using sha1 debugging keys. You must generate the SHA1 release keys.
To generate Release SHA1, first go to the JAVA JRE Bin folder and open the command line there or directly open the command line and go to the JAVA JRE bin folder, for example: C: \ Program Files (x86) \ Java \ jre7 \ Bin>
Then use the command below to create the SHA1 release keys,
keytool -list -v -keystore <keystore_path> -alias <alias_name>
Example:
My Keystore Path: D: \ AndroidProjects \ my_app_key_store.jks
My Alias ββName: my_app_alias
Now use the command below to create your own keytool path:
keytool -list -v -keystore D:\AndroidProjects\my_app_key_store.jks -alias my_app_alias
source share