flutter-安卓keystore

 

keytool -keystore 密钥路径 -list -v  查看密钥SHA1指纹

 

facebook 分析使用到的密钥散列: (28位密钥散列)

  windows中查看:(需要自己安装openssl)

    keytool -exportcert -alias androiddebugkey -keystore "C:\Users\USERNAME\.android\debug.keystore" | "PATH_TO_OPENSSL_LIBRARY\bin\openssl" sha1 -binary | "PATH_TO_OPENSSL_LIBRARY\bin\openssl" base64

  macOS中查看: (macOS内置了openssl)

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

posted @ 2020-09-16 14:11  前端法师  阅读(531)  评论(0编辑  收藏  举报