Shouldn't I expect an "Ok" output whenever I run apksigner verify APK.apk
on my apk and it finishes correctly?
I ran the command on an apk and it simply finished without throwing any warning or message.
I am suspicious that the apk is corrupt because adb install is taking forever.
By default apksigner does only output warnings and errors on console.
If the verification fails you will see the output
DOES NOT VERIFY
. And the process exit code will be 1 instead of 0 (on Windows this code is stored in%erorlevel%
on Linux/Bash see$?
).If you want to see verification details execute
You will get a complete verification result and a separate output for each verification check like this:
I recommend to additionally also output the signing certificate hashes:
How to estimate the authenticity of the used signing certificate is e.g. included in this answer.