mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

* aapt, ab: add French translation * Update pages.fr/common/aapt.md Co-authored-by: Emily Grace Seville <emilyseville7cf@gmail.com> * Update aapt.md Co-authored-by: Emily Grace Seville <emilyseville7cf@gmail.com> Co-authored-by: Axel Navarro <navarroaxel@gmail.com>
17 lines
529 B
Markdown
17 lines
529 B
Markdown
# aapt
|
|
|
|
> Android Asset Packaging Tool.
|
|
> Compile et empaquette les ressources d'une application Android.
|
|
> Plus d'informations : <https://elinux.org/Android_aapt>.
|
|
|
|
- Liste les fichiers contenus une archive APK :
|
|
|
|
`aapt list {{chemin/vers/app.apk}}`
|
|
|
|
- Affiche les metadatas d'une application (version, autorisations, etc.) :
|
|
|
|
`aapt dump badging {{chemin/vers/app.apk}}`
|
|
|
|
- Créé une nouvelle archive APK avec les fichiers venant d'un dossier spécifique :
|
|
|
|
`aapt package -F {{chemin/vers/app.apk}} {{chemin/vers/le/dossier}}`
|