1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-02 09:10:11 +02:00

init: enable apksigner by default so v2/v3 APK signatures validate

Ultimately we want to get to using apksigner by default everywhere,
this gets us closer to that by setting up all new repos to use
apksigner by default in the config.py
This commit is contained in:
Hans-Christoph Steiner 2020-10-21 15:16:12 +02:00
parent 989159ef09
commit aa80662642

View File

@ -162,6 +162,10 @@ def main():
# now that we have a local config.py, read configuration... # now that we have a local config.py, read configuration...
config = common.read_config(options) config = common.read_config(options)
# enable apksigner by default so v2/v3 APK signatures validate
if common.find_apksigner() is not None:
test_config['apksigner'] = common.find_apksigner()
# the NDK is optional and there may be multiple versions of it, so it's # the NDK is optional and there may be multiple versions of it, so it's
# left for the user to configure # left for the user to configure