I generated Hash from AppSignatureHelper class which works for debug build, same didn't work for release build, so I generated a hash using keystore and alias using command https://developers.google.com/identity/sms-retriever/verify#computing_your_apps_hash_string and updated to SMS text, this too didn't work.
相关问题
- How can I create this custom Bottom Navigation on
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- Listening to outgoing sms not working android
- How to create Circular view on android wear?
相关文章
- android开发 怎么把图片放入drawable的文件夹下
- android上如何获取/storage/emulated/下的文件列表
- androidStudio有个箭头不认识
- SQLite不能创建表
- Windows - Android SDK manager not listing any plat
- Animate Recycler View grid when number of columns
- Why is the app closing suddenly without showing an
- Android OverlayItem.setMarker(): Change the marker
First publish app on play store then do these steps :
I have added an example you can check in below SS.
EDIT 1:-
Steps for Release Hashkey:
keytool -exportcert -alias **myaliasname** -keystore **"C:\Users\hiren.patel\Desktop\mykeystore.jks"** | "C:\openssl-0.9.8e_X64\bin\openssl.exe" sha1 -binary | "C:\openssl-0.9.8e_X64\bin\openssl.exe" base64
Kindly change Alias Name and Keystore with it's path as your requirement.
Note:
Please put your details where I have marked between ** **.Terminal would ask for Password of Keystore. You have to provide password for the same Keystore.
So finally you would get the Release Hashkey.
Done
EDIT 2:
Use this command in linux :
if you don't have linux OS then you can do this online : using this link :
https://rextester.com/l/bash_online_compiler
Note : USE API SIGNING KEY FROM DEVELOPER CONSOLE.
Edit 3:
Try generating hash without alias for Google APK Sign Enabled
i.e
NOTE : SHA-256 certificate fingerprint, take this from developer console
Finally this solved my problem How to generate 11 char hash key for Sms Retriever with Google App signing
The solution mentioned by @farhan in his question helped