From dfecdcc1bd25096672f6f77a83e894a8a8fcc9c0 Mon Sep 17 00:00:00 2001 From: Marcus Hoffmann Date: Thu, 10 Sep 2020 13:19:13 +0200 Subject: [PATCH] set minimum apksigner version to 26.0.2 --- fdroidserver/common.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fdroidserver/common.py b/fdroidserver/common.py index a589e8f8..e6b10305 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -72,7 +72,9 @@ FDROID_PATH = os.path.realpath(os.path.join(os.path.dirname(__file__), '..')) # this is the build-tools version, aapt has a separate version that # has to be manually set in test_aapt_version() MINIMUM_AAPT_BUILD_TOOLS_VERSION = '26.0.0' -MINIMUM_APKSIGNER_BUILD_TOOLS_VERSION = '26.0.1' +# 26.0.2 is the first version recognizing md5 based signatures as valid again +# (as does android, so we want that) +MINIMUM_APKSIGNER_BUILD_TOOLS_VERSION = '26.0.2' VERCODE_OPERATION_RE = re.compile(r'^([ 0-9/*+-]|%c)+$')