用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/AeonDave/malskill --skill jadx命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | jadx |
| description | Auth/lab ref: Android Dex-to-Java decompiler with CLI and GUI support. |
| license | Apache-2.0 |
| compatibility | Linux, macOS, Windows; Java 11+ 64-bit; release zip or package manager install. |
| metadata | {"author":"AeonDave","version":"1.0"} |
Readable Android decompilation with both CLI and GUI workflows.
Use JADX when you want to:
Use apktool when you need to edit and rebuild the APK.
# CLI decompile to folder
jadx -d out app.apk
# Open GUI for interactive analysis
jadx-gui app.apk
# Export as Gradle-like project
jadx -e -d out app.apk
| Flag | Purpose |
|---|---|
-d, --output-dir | Write decompiled output to a directory |
-e, --export-gradle | Export a Gradle-like project |
--show-bad-code | Keep inconsistent code instead of hiding it |
--deobf | Enable deobfuscation |
--single-class | Decompile only one class |
--single-class-output | Write single-class output to file or dir |
--output-format json | Emit JSON instead of Java output |
--cfg / --raw-cfg | Export control-flow graphs |
-q / -v | Quiet or verbose logging |
jadx -d out app.apk
Then inspect:
sources/ for business logicresources/AndroidManifest.xmljadx-gui app.apk
Best for:
jadx --deobf --show-bad-code -d out app.apk
Use this when normal output hides code paths or when identifiers are too mangled.
jadx --single-class com.example.auth.LoginActivity app.apk
Useful when you already know the package/class name from logs, manifest, or previous triage.
jadx-gui first for orientation, then rerun CLI with focused flags for reproducible output.jadx to apktool or direct smali edits.apktool smali or another RE tool.No bundled scripts/, references/, or assets/.
Use the official README and wiki for plugin management, GUI-specific features, and advanced renaming options.