Merge remote-tracking branch 'upstream/dev' into insan

This commit is contained in:
Ax333l 2023-04-26 10:50:07 +02:00
commit 31b137cf86
4 changed files with 20 additions and 9 deletions

View File

@ -1,3 +1,17 @@
## [2.20.2-dev.1](https://github.com/revanced/revanced-cli/compare/v2.20.1...v2.20.2-dev.1) (2023-04-03)
### Bug Fixes
* correct spelling mistake ([31fb316](https://github.com/revanced/revanced-cli/commit/31fb3166d922ae1f568f52e44cbe726dd1c891a4))
## [2.20.1](https://github.com/revanced/revanced-cli/compare/v2.20.0...v2.20.1) (2023-03-14)
### Bug Fixes
* correctly word option descriptions ([ac3a8f6](https://github.com/revanced/revanced-cli/commit/ac3a8f66f77a7218974465eebbfc78a536b76d51))
## [2.20.1-dev.1](https://github.com/revanced/revanced-cli/compare/v2.20.0...v2.20.1-dev.1) (2023-03-05)

View File

@ -1,5 +1,5 @@
plugins {
kotlin("jvm") version "1.7.0"
kotlin("jvm") version "1.8.10"
id("com.github.johnrengelman.shadow") version "7.1.2"
}
@ -23,15 +23,14 @@ repositories {
}
dependencies {
implementation("org.jetbrains.kotlin:kotlin-reflect:1.8.10")
implementation("app.revanced:revanced-patcher:7.0.0")
implementation("info.picocli:picocli:4.7.0")
implementation("info.picocli:picocli:4.7.1")
implementation("com.github.revanced:jadb:master-SNAPSHOT") // updated fork
implementation("com.android.tools.build:apksig:7.2.2")
implementation("org.bouncycastle:bcpkix-jdk15on:1.70")
implementation("cc.ekblad:4koma:1.1.0")
implementation(kotlin("reflect"))
testImplementation(kotlin("test"))
}
tasks {

View File

@ -1,6 +1,6 @@
# 🛠️ Using the ReVanced CLI
Lean how to use the ReVanced CLI.
Learn how to use the ReVanced CLI.
## ⚡ Setup (optional)
@ -43,7 +43,6 @@ Lean how to use the ReVanced CLI.
```bash
java -jar revanced-cli.jar \
-a input.apk \
-c \
-o patched-output.apk \
-b revanced-patches.jar
```
@ -54,7 +53,6 @@ Lean how to use the ReVanced CLI.
adb install input.apk # make sure the same version is installed
java -jar revanced-cli.jar \
-a input.apk \
-c \
-d device-name \
-o patched-output.apk \
-b revanced-patches.jar \

View File

@ -1,2 +1,2 @@
kotlin.code.style = official
version = 2.20.1-dev.1
version = 2.20.2-dev.1