mirror of
https://github.com/revanced/revanced-cli.git
synced 2024-12-13 05:37:45 +01:00
feat: use friendly descriptions
This commit is contained in:
parent
0350b7f1a2
commit
3dd875d14c
@ -8,7 +8,7 @@ import java.util.logging.Logger
|
|||||||
|
|
||||||
@Command(
|
@Command(
|
||||||
name = "uninstall",
|
name = "uninstall",
|
||||||
description = ["Uninstall a patched APK file from the devices with the supplied ADB device serials"]
|
description = ["Uninstall a patched app from the devices with the supplied ADB device serials"]
|
||||||
)
|
)
|
||||||
internal object UninstallCommand : Runnable {
|
internal object UninstallCommand : Runnable {
|
||||||
private val logger = Logger.getLogger(UninstallCommand::class.java.name)
|
private val logger = Logger.getLogger(UninstallCommand::class.java.name)
|
||||||
@ -16,7 +16,7 @@ internal object UninstallCommand : Runnable {
|
|||||||
@Parameters(description = ["ADB device serials"], arity = "1..*")
|
@Parameters(description = ["ADB device serials"], arity = "1..*")
|
||||||
private lateinit var deviceSerials: Array<String>
|
private lateinit var deviceSerials: Array<String>
|
||||||
|
|
||||||
@Option(names = ["-p", "--package-name"], description = ["Package name to uninstall"], required = true)
|
@Option(names = ["-p", "--package-name"], description = ["Package name of the app to uninstall"], required = true)
|
||||||
private lateinit var packageName: String
|
private lateinit var packageName: String
|
||||||
|
|
||||||
@Option(
|
@Option(
|
||||||
|
Loading…
Reference in New Issue
Block a user