android's digital signature (* .keystore)

Each App release, announced that the territorial sovereignty of how this App is through 密钥库, it contains the names of developers, unit, organization, city, province, country code and other information, to ensure ownership of App.

View the key information repository

keytool -list -keystore C:\Users\xiongchaochao.android\debug.keystore -v

The default password debug.store debug keystore

android

Use jarsigner.exe to sign the apk

jarsigner.exe -verbose -keystore <密钥库> -signedjar <签名后的apk名称> <需要被签名的apk文件> <密钥库的别名>
eg:

jarsigner.exe -verbose -keystore debug.keystore -signedjar signed.apk app-debug.apk androiddebugkey

输入密钥库的密码短语:android

reference

https://www.jianshu.com/p/644ddb6e3d9c

Published 118 original articles · won praise 14 · views 50000 +

Guess you like

Origin blog.csdn.net/github_38641765/article/details/90452013