mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 16:42:08 +02:00
aapt: add page (#3544)
This commit is contained in:
parent
f5fdde2daa
commit
c704bd8ec5
1 changed files with 16 additions and 0 deletions
16
pages/common/aapt.md
Normal file
16
pages/common/aapt.md
Normal 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}}`
|
Loading…
Add table
Reference in a new issue