Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make shell commands in README easier to copy #114

Merged
merged 2 commits into from
Apr 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@ You can also use `apk-mitm` to [patch apps using Android App Bundle](#patching-a
If you have an up-to-date version of [Node.js][node] (14+) and [Java][java] (8+), you can install `apk-mitm` by running:

```shell
$ npm install -g apk-mitm
npm install -g apk-mitm
```

## Usage

Once installed, you can run this command to patch an app:

```shell
$ apk-mitm <path-to-apk>
apk-mitm <path-to-apk>
```

So, if your APK file is called `example.apk`, you'd run:
Patching an APK file called `example.apk` might look like this:

```shell
$ apk-mitm example.apk
Expand Down
Loading