https://github.com/zhulg/rustdecompileapk
Android Apk Decompiler tool , use Rust CLI integration
https://github.com/zhulg/rustdecompileapk
Last synced: 2 months ago
JSON representation
Android Apk Decompiler tool , use Rust CLI integration
- Host: GitHub
- URL: https://github.com/zhulg/rustdecompileapk
- Owner: zhulg
- Created: 2022-10-30T16:03:15.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-05T15:36:30.000Z (over 2 years ago)
- Last Synced: 2025-01-11T11:20:48.334Z (4 months ago)
- Language: Shell
- Homepage:
- Size: 26 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RustDecompileApk
- **The RustDecompileApk is a CLI tool using for decompiler Android apk, which uses Rust intergrating**
- When you need to reverse some android apks ,maybe you have manually used some third-party tools.
- ***Now we speed up the process by using Rust CLI***## How to use it
- it works in Mac and Linux: **./apkdecompiler -f xxxx.apk**
- run done will open outpath:
```
✅ create ouput:you decompiler outpath
✅ dex2jar...done
✅ decompile class...done
✅ decompile Resource...done
```## source build
- git clone
```
git clone https://github.com/zhulg/RustDecompileApk.git```
- vscode open
```
cd RustDecompileApk
code .
```- cargo build
```
debug
├── apkdecompiler
├── apkdecompiler.d
├── build
├── deps
├── examples
├── incremental
├── lib
└── output
```- ./apkdecompiler --help
```
ApkDecompiler for Android, create by Spark Coding BUUsage: apkdecompiler [OPTIONS]
Options:
-f, --file The path to your apk. [default: -]
-h, --help Print help information
-V, --version Print version informationLonger explanation to appear after the options when displaying the help information from --help or -h
```## License
[Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0.html)