certificate - How to view the identity of person who signed the apk on Android device? -
i need view signed application have installed onto device. possible on device or on pc?
(assuming can obtain access raw apk file - can, if know or make educated guess of name , location, though can't list contents of /data on non-rooted phone)
you open apk zip file , filter ascii text binary content of meta-inf/cert.rsa
or using actual tool,
jarsigner -verify -certs -verbose some_application.apk
of course way verify signer claim else signed same key party via direct or verified means , compare signing key fingerprints - how android verifies app upgrades , app id sharing come same party existing apk target.
Comments
Post a Comment