fix parameters

This commit is contained in:
Mylloon 2025-03-12 10:44:00 +01:00
parent 9db1df28cc
commit 645e90a910
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
3 changed files with 9 additions and 10 deletions

2
.gitignore vendored
View file

@ -1,7 +1,7 @@
APKs/
platform-tools/
revanced-cache/
revanced-app-temporary-files/
/options.json
/versions.txt

View file

@ -15,7 +15,7 @@ VERSIONS_TXT = versions.txt
WGET = wget -q --show-progress
CURL = curl -s
RM = rm -f
RM = rm -rf
MV = mv
LS = ls
ECHO = echo
@ -55,7 +55,7 @@ download_patches:
@$(WGET) $(shell $(CURL) $(GITHUB_URL)/$(GITHUB_REPO)/$(RVD_PATCHES)/$(GITHUB_ENDPOINT) | $(GREPS))
clean:
$(RM) $(EXTENSIONS) *.apk $(VERSIONS_TXT)
$(RM) $(EXTENSIONS) *.apk $(VERSIONS_TXT) revanced-app-temporary-files/
build:
@$(ECHO) build

View file

@ -25,20 +25,19 @@ Replace patch1 with your patch, and continue...
> [For patches name, use quotes](https://revanced.app/patches)
> You can get the list of patches using:
> ```sh
> java -jar revanced-cli.jar list-patches -f <app> "revanced-patches.jar"
> ```
>
> ```sh
> java -jar revanced-cli.jar list-patches -f <app> "patches.rvp"
> ```
```sh
java -jar revanced-cli.jar patch \
--patch-bundle="revanced-patches.jar" \
--patches="patches.rvp" \
--keystore="ReVanced.keystore" \
--merge="revanced-integrations.apk" \
--exclusive \
--out="revanced-app.apk" \
--alias=alias \
--keystore-entry-password="s3cur3p@ssw0rd" \
--keystore-password="s3cur3p@ssw0rd" \
"APKs/XXX.apk" \
-i patch1
-e patch1
```