1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 06:22:07 +02:00

aapt: add page (#3544)

This commit is contained in:
Pierre Rudloff 2019-11-14 22:44:36 +01:00 committed by Marco Bonelli
parent f5fdde2daa
commit c704bd8ec5

16
pages/common/aapt.md Normal file
View file

@ -0,0 +1,16 @@
# aapt
> Android Asset Packaging Tool.
> Compile and package an Android app's resources.
- List files contained in an APK archive:
`aapt list {{path/to/app.apk}}`
- Display an app's metadata (version, permissions, etc.):
`aapt dump badging {{path/to/app.apk}}`
- Create a new APK archive with files from the specified directory:
`aapt package -F {{path/to/app.apk}} {{path/to/directory}}`