skylot / jadx

Dex to Java decompiler
Apache License 2.0
41.81k stars 4.88k forks source link

How does jadx(command line version) obtain APK signature? #1791

Closed wujian0601 closed 1 year ago

wujian0601 commented 1 year ago

I see that jadx-gui has APK signature view which shows the details of all versions of signatures used. But, I don't know use jadx(command line version) to obtain APK signature.Which command should I input?please tell me,thanks

jpstotz commented 1 year ago

The command-line version Jadx does not process the APK signature. The necessary library and the code to decode the signatures is not included in the command-line version.

If you want to verify an APK signature please use apksigner from Android SDK.

wujian0601 commented 1 year ago

The command-line version Jadx does not process the APK signature. The necessary library and the code to decode the signatures is not included in the command-line version.

If you want to verify an APK signature please use apksigner from Android SDK.

I got it. Thank you very much!