Metadata-Version: 2.4
Name: apk-patchx
Version: 22.11.2025.0
Summary: Android APK manipulation toolkit with Frida gadget injection support
Keywords: android,apk,reverse-engineering,frida,patching
Author: Kaif
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Security
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: System :: Software Distribution
License-File: LICENSE
Requires-Dist: click>=8.0.0
Requires-Dist: requests>=2.25.0
Requires-Dist: tqdm>=4.60.0
Requires-Dist: colorama>=0.4.4
Project-URL: Homepage, https://github.com/kaifcodec/apk-patchx
Project-URL: Issues, https://github.com/kaifcodec/apk-patchx/issues
Project-URL: Repository, https://github.com/kaifcodec/apk-patchx.git

# APK-Patchx

<h2 align="center">⚡ apk-patchx</h2>

<p align="center">
  <a href="https://pypi.org/project/apk-patchx/">
    <img src="https://img.shields.io/pypi/v/apk-patchx?color=1E90FF&label=PyPI%20Latest&style=for-the-badge">
  </a>
   
  <img src="https://img.shields.io/badge/Tested%20on-Linux%20%7C%20macOS%20%7C%20Termux-0d1117?style=for-the-badge&logo=android&logoColor=39ff14">
  
  </p>
<br>

---

### 🔥 What is apk-patchx?
`apk-patchx` is a command-line tool that makes APK manipulation fast, modular, and developer-friendly.  
Whether you’re a security researcher, reverse engineer, or power user — it gives you a one-stop solution for:  

- 📦 **Pulling & merging split APKs** directly from connected Android devices  
- 🔍 **Decoding & rebuilding** APKs with apktool  
- 🧩 **Injecting Frida gadgets** into any architecture (`arm`, `arm64`, `x86`, `x86_64`)  
- 📝 **Patching smali/dex** code with your own hooks  
- 🔑 **Auto-signing** APKs for immediate deployment  
- 🎛️ **Custom decode/build options** for advanced workflows  

---

<p align="center">
  <img src="https://placehold.co/1100x150/000000/39ff14?font=JetBrains%20Mono&text=%24%20apk-patchx%20%20patch%20%20--arch%20arm64%20%20%20--frida-version%20%2017.2.8" alt="apk-patchx Terminal Example">
</p>

## Installation

```bash
pip install apk-patchx
```

## Usage

```bash
apk-patchx --help # For help regarding available commands
apk-patchx <COMMAND> --help # For help regarding options usage
apk-patchx patch --help # e.g.
```


### Available Commands

| Command | Description |
|--------|-------------|
| `build`  | Build APK from decoded directory. |
| `decode` | Decode APK file. |
| `patch`  | Patch APK with Frida gadget. |
| `pull`   | Pull APK from connected device. |
| `rename` | Rename APK package. |
| `sign`   | Sign APK file. |

---

## Patch Command (Full Options)

### Options


| Flag | Description |
|------|-------------|
| `-a, --arch [arm,arm64,x86,x86_64]` | **Required.** Target architecture. |
| `-g, --gadget-conf PATH` | Custom Frida gadget config JSON file. |
| `--net` | Add permissive network security config. |
| `-s, --no-src` | Skip DEX disassembly. |
| `--only-main-classes` | Only disassemble main DEX. |
| `--frida-version TEXT` | Specify Frida version to use. |
| `--apktool-decode-args TEXT` | Extra arguments for apktool decode. |
| `--apktool-build-args TEXT` | Extra arguments for apktool build. |
| `--help` | Show help and exit. |

### Rename APK package
```bash
apk-patchx rename app.apk com.newpackage.name
```

### Sign APK
```bash
apk-patchx sign app.apk
```

## Architecture Support

- ARM (`arm`)
- ARM64 (`arm64`) 
- x86 (`x86`)
- x86_64 (`x86_64`)

## Requirements

- Python 3.8+
- Java Runtime Environment (JRE 8+)
- ADB (for device operations)

## Tool Management

APK-Patchx automatically downloads and manages required tools in `~/.apk-patchx/tools/`:

- apktool
- Android SDK build-tools
- Platform tools (adb)
- dexpatch
- Frida gadgets

## License

MIT License - see LICENSE file for details.

