Magisk/config.prop.sample

29 lines
835 B
Plaintext
Raw Normal View History

2020-12-24 12:46:31 +00:00
##########################################################
# All variables in config.prop are optional
# Removing or leaving them blank will keep default values
##########################################################
2020-12-25 13:34:15 +00:00
# The version name of Magisk. Default: git HEAD short SHA1
version=string
2018-05-12 19:04:40 +00:00
2020-12-25 13:34:15 +00:00
# Output path. Default: out
outdir=string
2020-12-24 12:46:31 +00:00
# List of ABIs to build, separated with ','
# Default: armeabi-v7a,x86,arm64-v8a,x86_64
abiList=[string]
2020-12-24 12:46:31 +00:00
#####################################################
# Signing configs for signing zips and APKs
# These 4 variables has to be either all set or not
#####################################################
2018-05-12 19:04:40 +00:00
2020-12-24 12:46:31 +00:00
# Path to keystore file
2020-12-25 13:34:15 +00:00
keyStore=string
2020-12-24 12:46:31 +00:00
# Keystore password
2020-12-25 13:34:15 +00:00
keyStorePass=string
2020-12-24 12:46:31 +00:00
# The desired key alias in the keystore
2020-12-25 13:34:15 +00:00
keyAlias=string
2020-12-24 12:46:31 +00:00
# Password of specified key alias
2020-12-25 13:34:15 +00:00
keyPass=string