mirror of
https://github.com/revanced/revanced-cli.git
synced 2024-12-12 05:07:48 +01:00
docs: Fix blockquote highlights not rendering
As of 14. Nov 2023 GitHub has decided to disable nested highlighted blockquotes: https://github.com/orgs/community/discussions/16925.
This commit is contained in:
parent
b5bd988a1d
commit
b6f63c7d9d
@ -34,33 +34,33 @@ ReVanced CLI is divided into the following fundamental commands:
|
|||||||
revanced-patches.jar [<patch-bundle> ...]
|
revanced-patches.jar [<patch-bundle> ...]
|
||||||
```
|
```
|
||||||
|
|
||||||
> [!NOTE]
|
> **ℹ️ Note**
|
||||||
> A default `options.json` file will be automatically created if it does not exist
|
> A default `options.json` file will be automatically created if it does not exist
|
||||||
without any need for intervention when using the `patch` command.
|
without any need for intervention when using the `patch` command.
|
||||||
|
|
||||||
- ### 💉 Patch an app
|
- ### 💉 Patch an app
|
||||||
|
|
||||||
You can patch apps by supplying patch bundles and the app to patch.
|
You can patch apps by supplying patch bundles and the app to patch.
|
||||||
After patching, ReVanced CLI can install the patched app on your device using two methods:
|
After patching, ReVanced CLI can install the patched app on your device using two methods:
|
||||||
|
|
||||||
|
> **💡 Tip**
|
||||||
|
> For ReVanced CLI to be able to install the patched app on your device, make sure ADB is working:
|
||||||
|
>
|
||||||
|
> ```bash
|
||||||
|
> adb shell exit
|
||||||
|
> ```
|
||||||
|
>
|
||||||
|
> If you want to mount the patched app on top of the un-patched app, make sure you have root permissions:
|
||||||
|
>
|
||||||
|
> ```bash
|
||||||
|
> adb shell su -c exit
|
||||||
|
> ```
|
||||||
|
>
|
||||||
|
|
||||||
> [!NOTE]
|
> **⚠️ Warning**
|
||||||
> For ReVanced CLI to be able to install the patched app on your device, make sure ADB is working:
|
> Some patches may require integrations
|
||||||
>
|
> such as [ReVanced Integrations](https://github.com/revanced/revanced-integrations).
|
||||||
> ```bash
|
> Supply them with the option `--merge`. ReVanced Patcher will automatically determine if they are necessary.
|
||||||
> adb shell exit
|
|
||||||
> ```
|
|
||||||
>
|
|
||||||
> If you want to mount the patched app on top of the un-patched app, make sure you have root permissions:
|
|
||||||
>
|
|
||||||
> ```bash
|
|
||||||
> adb shell su -c exit
|
|
||||||
> ```
|
|
||||||
>
|
|
||||||
|
|
||||||
> [!WARNING]
|
|
||||||
> Some patches may require integrations
|
|
||||||
> such as [ReVanced Integrations](https://github.com/revanced/revanced-integrations).
|
|
||||||
> Supply them with the option `--merge`. ReVanced Patcher will automatically determine if they are necessary.
|
|
||||||
|
|
||||||
- #### 👾 Patch an app and install it on your device regularly
|
- #### 👾 Patch an app and install it on your device regularly
|
||||||
|
|
||||||
@ -73,26 +73,12 @@ without any need for intervention when using the `patch` command.
|
|||||||
|
|
||||||
- #### 👾 Patch an app and mount it on top of the un-patched app with root permissions
|
- #### 👾 Patch an app and mount it on top of the un-patched app with root permissions
|
||||||
|
|
||||||
> [!IMPORTANT]
|
> **❗ Caution**
|
||||||
> Ensure that the same app you are patching and mounting over is installed on your device:
|
> Ensure that the same app you are patching and mounting over is installed on your device:
|
||||||
>
|
>
|
||||||
> ```bash
|
> ```bash
|
||||||
> adb install app.apk
|
> adb install app.apk
|
||||||
> ```
|
> ```
|
||||||
|
|
||||||
> [!NOTE]
|
|
||||||
> You can use the option `--ii` to include or `--ie` to exclude
|
|
||||||
> patches by their index in relation to supplied patch bundles,
|
|
||||||
> similarly to the option `--include` and `--exclude`.
|
|
||||||
>
|
|
||||||
> This is useful in case two patches have the same name, and you must include or exclude one.
|
|
||||||
> The patch index is calculated by the position of the patch in the list of patches
|
|
||||||
> from patch bundles supplied using the option `--patch-bundle`.
|
|
||||||
>
|
|
||||||
> You can list all patches with their indices using the command `list-patches`.
|
|
||||||
>
|
|
||||||
> Keep in mind that the indices can change based on the order of the patch bundles supplied,
|
|
||||||
> as well if the patch bundles are updated because patches can be added or removed.
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
java -jar revanced-cli.jar patch \
|
java -jar revanced-cli.jar patch \
|
||||||
@ -104,6 +90,20 @@ without any need for intervention when using the `patch` command.
|
|||||||
--mount \
|
--mount \
|
||||||
app.apk
|
app.apk
|
||||||
```
|
```
|
||||||
|
|
||||||
|
> **💡 Tip**
|
||||||
|
> You can use the option `--ii` to include or `--ie` to exclude
|
||||||
|
> patches by their index in relation to supplied patch bundles,
|
||||||
|
> similarly to the option `--include` and `--exclude`.
|
||||||
|
>
|
||||||
|
> This is useful in case two patches have the same name, and you must include or exclude one.
|
||||||
|
> The patch index is calculated by the position of the patch in the list of patches
|
||||||
|
> from patch bundles supplied using the option `--patch-bundle`.
|
||||||
|
>
|
||||||
|
> You can list all patches with their indices using the command `list-patches`.
|
||||||
|
>
|
||||||
|
> Keep in mind that the indices can change based on the order of the patch bundles supplied,
|
||||||
|
> as well if the patch bundles are updated because patches can be added or removed.
|
||||||
|
|
||||||
- ### 🗑️ Uninstall an app
|
- ### 🗑️ Uninstall an app
|
||||||
|
|
||||||
@ -113,9 +113,9 @@ without any need for intervention when using the `patch` command.
|
|||||||
[<device-serial>]
|
[<device-serial>]
|
||||||
```
|
```
|
||||||
|
|
||||||
> [!NOTE]
|
> **💡 Tip**
|
||||||
> You can unmount an APK file
|
> You can unmount an APK file
|
||||||
by adding the option `--unmount`.
|
by adding the option `--unmount`.
|
||||||
|
|
||||||
- ### ️ 📦 Install an app
|
- ### ️ 📦 Install an app
|
||||||
|
|
||||||
@ -125,6 +125,6 @@ by adding the option `--unmount`.
|
|||||||
[<device-serial>]
|
[<device-serial>]
|
||||||
```
|
```
|
||||||
|
|
||||||
> [!NOTE]
|
> **💡 Tip**
|
||||||
> You can mount an APK file
|
> You can mount an APK file
|
||||||
> by supplying the package name of the app to mount the supplied APK file over the option `--mount`.
|
> by supplying the app's package name to mount the supplied APK file over the option `-mount`.
|
||||||
|
Loading…
Reference in New Issue
Block a user