mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-07 16:00:28 +03:00
Merge branch 'neonsoftware/master' into master
buildserver: include build-tools 28.0.3 Added test aapt output files for build-tools 28.0.3 update.py: Still aapt output parsing, setting regex to catch 'name=' without prefixes, needed for build-tools 28.0.3 fdroid/fdroidserver!591
This commit is contained in:
commit
1174b14d1e
19 changed files with 324 additions and 6 deletions
|
|
@ -55,7 +55,7 @@ METADATA_VERSION = 21
|
|||
# less than the valid range of versionCode, i.e. Java's Integer.MIN_VALUE
|
||||
UNSET_VERSION_CODE = -0x100000000
|
||||
|
||||
APK_NAME_PAT = re.compile(".*name='([a-zA-Z0-9._]*)'.*")
|
||||
APK_NAME_PAT = re.compile(r".*\Wname='([a-zA-Z0-9._]*)'.*")
|
||||
APK_VERCODE_PAT = re.compile(".*versionCode='([0-9]*)'.*")
|
||||
APK_VERNAME_PAT = re.compile(".*versionName='([^']*)'.*")
|
||||
APK_LABEL_ICON_PAT = re.compile(r".*\s+label='(.*)'\s+icon='(.*?)'")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue