mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-19 21:30:10 +01: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:
parent
989159ef09
commit
aa80662642
@ -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
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user