Skip to content

Commit

Permalink
rename autogen to demodapk
Browse files Browse the repository at this point in the history
  • Loading branch information
Veha0001 committed Feb 22, 2025
1 parent 5b7e055 commit b84cd16
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,17 @@ DemodAPK is a Python-based tool designed to modify decompiled APK files. It enab
```bash
pip install -r requirements.txt
```
3. Install demodapk
```bash
pip install .
```

## Usage

Run the script with the following command:

```bash
python autogen.py --config <path_to_config.json> <apk_directory/apk_file>
python demodapk.py --config <path_to_config.json> <apk_directory/apk_file>
```

### Patcher
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
name="DemodAPK",
author="Veha Veha",
version="1.0",
py_modules=["autogen"],
py_modules=["demodapk"],
install_requires=requirements,
entry_points={
"console_scripts": [
"demodapk = autogen:main",
"demodapk = demodapk:main",
],
},
)

0 comments on commit b84cd16

Please sign in to comment.