← All skills
Tencent SkillHub · Developer Tools

Apktool

反向工程 Android APK 文件的命令行工具

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

反向工程 Android APK 文件的命令行工具

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/install.md, references/troubleshooting.md, references/usage.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.0.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 14 sections Open source page

Apktool 技能

🔧 反向工程 Android APK 文件的命令行工具

必需二进制文件

apktool - Android APK 反向工程工具 java - Java 运行时(Apktool 基于 Java)

检查依赖

# 检查 apktool 是否已安装 which apktool apktool --version # 检查 Java 是否已安装 java -version

安装指引

如未安装,请阅读 references/install.md 获取详细安装步骤。

🎯 核心功能

反编译(Disassemble) - 将 APK 解码为近乎原始形式(smali 代码、资源文件) 编译(Assemble) - 将修改后的代码和资源重新打包为 APK 分析(Analyze) - 快速检查资源清单和配置文件,无需重建

反编译 APK

# 基本反编译 apktool d app.apk # 指定输出目录 apktool d app.apk -o output_folder # 仅分析不生成文件(-m 模式) apktool d app.apk -m

重新编译 APK

# 编译反编译后的文件夹 apktool b app_folder # 指定输出 APK 路径 apktool b app_folder -o modified_app.apk

典型工作流

# 1. 反编译 apktool d target.apk -o target_decompiled # 2. 修改资源或代码 # 编辑 target_decompiled/ 中的文件 # 3. 重新编译 apktool b target_decompiled -o target_modified.apk # 4. 签名 APK(需要额外工具) # apksigner 或 jarsigner

📚 详细文档

主题文档🔧 安装指南references/install.md📖 完整用法references/usage.md🛠️ 常见问题references/troubleshooting.md

🔐 安全提示

合法使用 - 仅对您拥有权限的 APK 进行反向工程 学习研究 - 适用于安全研究、应用分析、本地化翻译等合法用途 遵守法律 - 请勿用于侵犯版权或绕过软件保护

示例 1:查看 APK 结构

# 快速分析 APK 结构(不生成文件) apktool d app.apk -m # 查看 AndroidManifest.xml cat apktool.yml

示例 2:修改应用资源

# 反编译 apktool d myapp.apk # 修改 res/values/strings.xml 进行本地化 # 编辑文件... # 重新编译 apktool b myapp -o myapp_localized.apk

示例 3:分析权限配置

# 反编译并查看 AndroidManifest.xml apktool d target.apk -m cat target/AndroidManifest.xml | grep permission

💡 提示

反编译后的代码为 smali 格式(Android 的汇编语言) 如需 Java 源代码,可配合 jadx 工具使用 修改后的 APK 需要重新签名才能安装到设备 大型 APK 反编译可能需要数分钟 版本: 0.0.2 最后更新: 2026-02-28

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Docs
  • SKILL.md Primary doc
  • references/install.md Docs
  • references/troubleshooting.md Docs
  • references/usage.md Docs