Skip to content

Commit

Permalink
Update README.rst
Browse files Browse the repository at this point in the history
Signed-off-by: ksg <[email protected]>
  • Loading branch information
ksg97031 committed Oct 17, 2024
1 parent c3085a5 commit a78b1f3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,14 @@ Usage
Patch an APK with the Frida gadget library
Options:
--arch TEXT Target architecture of the device. (options: arm64, x86_64, arm, x86)
--arch TEXT Target architecture of the device. (options: arm64, x86_64, arm, x86)
--config TEXT Upload the Frida configuration file.
--no-res Do not decode resources.
--main-activity TEXT Specify the main activity if desired. (e.g., com.example.MainActivity)
--sign Automatically sign the APK using uber-apk-signer.
--use-aapt2 Use aapt2 instead of aapt.
--no-res Do not decode resources.
--skip-decompile Skip decompilation if desired.
--skip-recompile Skip recompilation if desired.
--use-aapt2 Use aapt2 instead of aapt.
--version Show version and exit.
--help Show this message and exit.
Expand Down
2 changes: 1 addition & 1 deletion scripts/__version__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""frida-gadget version information."""
__title__ = "frida-gadget"
__version__ = "1.4.2"
__version__ = "1.4.3"
__description__ = "Automated Frida Gadget injection tool"
__url__ = "https://github.com/ksg97031/frida-gadget"
__author__ = "ksg97031"
Expand Down
2 changes: 1 addition & 1 deletion scripts/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def print_version(ctx, _, value):

# pylint: disable=too-many-arguments
@click.command()
@click.option('--arch', default="arm64", help="Target architecture of the device.")
@click.option('--arch', default="arm64", help="Target architecture of the device. (options: arm64, x86_64, arm, x86)")
@click.option('--config', help="Upload the Frida configuration file.")
@click.option('--no-res', is_flag=True, help="Do not decode resources.")
@click.option('--main-activity', default=None, help="Specify the main activity if desired.")
Expand Down

0 comments on commit a78b1f3

Please sign in to comment.