作者:花儿在绽放2502857073 | 来源:互联网 | 2023-05-18 16:31
AndroidStudio1.x版签名key生成,查看key的sha1和MD5的方法以下经验来自http:stackoverflow.comquestions1221
Android Studio 1.x版 签名key生成,查看key的sha1 和MD5 的方法
以下经验来自http://stackoverflow.com/questions/12214467/how-to-obtain-signing-certificate-fingerprint-sha1-for-oauth-2-0-on-android
首先你需要手动生成一个key给自己用。
详细方法见http://developer.android.com/tools/publishing/app-signing.html
总结起来就是Build > Generate Signed APK.>Create new 然后依次填入信息,关键是记住密码那一项就好了。
点next之后把key存储在某个地方,格式是jks。事实证明和网络上流传甚广的debug.keystore 是同一个东西
然后你就可以用这key来签名啦,可以单次生成signed app(就在Create new那个面板),如果要每次都生成,
- On the project browser, right click on your app and select Open Module Settings. 右键菜单选中OpenModuleSetting
- Click on the Signing tab.
- Select your keystore file, enter a name for this signing configuration (as you may create more than one), and enter the required information.
- Click on the Build Types tab.
- Select the release build.设定什么情况下要签名
到关键的一步了,如何查看SHA1 和MD5?
首先CMD进入JDK的bin目录(如果之前JDK没有做好环境变量的话)
keytool -list -v -keystore "E:\HelloWorld.jks"
执行他就好了!这里假定生成的那个key文件在E盘目录下,自行按需做替换即可。
随后就会让你输入刚才的密码,输进去就ok啦!