Add key alias option to config.prop

This commit is contained in:
topjohnwu 2018-05-27 14:59:08 +08:00
parent 9fb9212b0a
commit ef2f8d485b
2 changed files with 4 additions and 2 deletions

View File

@ -181,8 +181,8 @@ def sign_apk(source, target):
if not apksigner:
error('Cannot find apksigner.jar in Android SDK build tools')
proc = subprocess.run('java -jar {} sign --ks release-key.jks --ks-pass pass:{} --key-pass pass:{} {}'.format(
apksigner, config['keyStorePass'], config['keyPass'], target), shell=True)
proc = subprocess.run('java -jar {} sign --ks release-key.jks --ks-pass pass:{} --ks-key-alias {} --key-pass pass:{} {}'.format(
apksigner, config['keyStorePass'], config['keyAlias'], config['keyPass'], target), shell=True)
if proc.returncode != 0:
error('Release sign Magisk Manager failed!')

View File

@ -9,5 +9,7 @@ outdir=out
prettyName=false
# These pwds are passed to apksigner for release-key.jks. Necessary when building release apks
# keyPass is the pwd for the specified keyAlias
keyStorePass=
keyAlias=
keyPass=