Magisk/config.prop.sample

34 lines
1.0 KiB
Plaintext
Raw Normal View History

2020-12-24 13:46:31 +01:00
##########################################################
# All variables in config.prop are optional
# Removing or leaving them blank will keep default values
##########################################################
2020-12-25 14:34:15 +01:00
# The version name of Magisk. Default: git HEAD short SHA1
version=string
2018-05-12 21:04:40 +02:00
2020-12-25 14:34:15 +01:00
# Output path. Default: out
outdir=string
2020-12-24 13:46:31 +01:00
################################################################
# Whether to use pretty names for zips
# e.g. Magisk-v${version}.zip, Magisk-uninstaller-${date}.zip
# Default names are magisk-${release/debug/uninstaller}.zip
################################################################
2020-12-25 14:34:15 +01:00
# Default: false
prettyName=bool
2018-05-12 21:04:40 +02:00
2020-12-24 13:46:31 +01:00
#####################################################
# Signing configs for signing zips and APKs
# These 4 variables has to be either all set or not
#####################################################
2018-05-12 21:04:40 +02:00
2020-12-24 13:46:31 +01:00
# Path to keystore file
2020-12-25 14:34:15 +01:00
keyStore=string
2020-12-24 13:46:31 +01:00
# Keystore password
2020-12-25 14:34:15 +01:00
keyStorePass=string
2020-12-24 13:46:31 +01:00
# The desired key alias in the keystore
2020-12-25 14:34:15 +01:00
keyAlias=string
2020-12-24 13:46:31 +01:00
# Password of specified key alias
2020-12-25 14:34:15 +01:00
keyPass=string