1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.fr/common/androguard.md

17 lines
502 B
Markdown
Raw Normal View History

# androguard
> Outil d’ingénierie inverse pour les applications Android. Écrit en Python.
> Plus d'informations : <https://github.com/androguard/androguard>.
- Affiche le manifest d'application Android :
`androguard axml {{chemin/vers/app.apk}}`
- Affiche les métadonnées de l'application (version et ID d'application) :
`androguard apkid {{chemin/vers/app.apk}}`
- Décompile le code Java de l'application :
`androguard decompile {{chemin/vers/app.apk}} --output {{chemin/vers/dossier}}`