mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 23:42:37 +03: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
1 changed files with 4 additions and 0 deletions
|
@ -162,6 +162,10 @@ def main():
|
|||
# now that we have a local config.py, read configuration...
|
||||
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
|
||||
# left for the user to configure
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue