发布网友 发布时间:2022-05-15 00:59
共2个回答
热心网友 时间:2023-08-05 03:57
使用香蕉云编,在线上传apk或签名证书就可以知道sha1值和md5值了
https://www.yunedit.com/sha1
热心网友 时间:2023-08-05 03:57
To sign an Android APK from command line: Sign the APK with jarsigner (using default keystore, android-root is the alias of the signing key): $ jarsigner -signedjar HelloWorld-new.apk HelloWorld-debug-unaligned.apk android-root Enter Passphrase for keystore: password Verify signature (optional) $ jarsigner -verify -verbose -certs HelloWorld-new.apk Align the APK (must use -v 4 option): $ ~/android-sdk-linux_86/tools/zipalign -v 4 HelloWorld-new.apk HelloWorld-new-aligned.apk 查看原帖>>