HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

apktool — Reverse engineer APK files. More information: <https://ibotpeaches.github.io/Apktool/>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandfilescliapkreversemoreengineerapktool

Problem

How to use the apktool command: Reverse engineer APK files. More information: <https://ibotpeaches.github.io/Apktool/>.

Solution

apktool — Reverse engineer APK files. More information: <https://ibotpeaches.github.io/Apktool/>.

Decode an APK file:
apktool d {{path/to/file}}.apk


Build an APK file from a directory:
apktool b {{path/to/directory}}


Install and store a framework:
apktool if {{path/to/framework}}.apk

Code Snippets

Decode an APK file

apktool d {{path/to/file}}.apk

Build an APK file from a directory

apktool b {{path/to/directory}}

Install and store a framework

apktool if {{path/to/framework}}.apk

Context

tldr-pages: common/apktool

Revisions (0)

No revisions yet.