Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Commit

Permalink
feat: rollback the default values of keystore alias and password to C…
Browse files Browse the repository at this point in the history
…LI v3.0 (compatible with old keystore)
  • Loading branch information
inotia00 authored and Blawuken committed Dec 28, 2023
1 parent 4f8b00b commit 2d48607
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,20 +117,20 @@ internal object PatchCommand : Runnable {
names = ["--keystore-password"],
description = ["The password of the keystore to sign the patched APK file with. Empty password by default."],
)
private var keyStorePassword: String? = null // Empty password by default
private var keyStorePassword = "ReVanced" // Legacy password

@CommandLine.Option(
names = ["--alias"],
description = ["The alias of the key from the keystore to sign the patched APK file with."],
showDefaultValue = ALWAYS,
)
private var alias = "ReVanced Key"
private var alias = "alias" // Legacy alias

@CommandLine.Option(
names = ["--keystore-entry-password"],
description = ["The password of the entry from the keystore for the key to sign the patched APK file with."],
)
private var password = "" // Empty password by default
private var password = "ReVanced" // Legacy password

@CommandLine.Option(
names = ["--signer"],
Expand Down

0 comments on commit 2d48607

Please sign in to comment.