mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-16 16:02:33 +03:00
Try a better regex match for the versionName
This commit is contained in:
parent
f44ad6711a
commit
bc6e9cd4b4
1 changed files with 1 additions and 1 deletions
|
@ -904,7 +904,7 @@ def fetch_real_name(app_dir):
|
|||
def parse_androidmanifest(app_dir):
|
||||
|
||||
vcsearch = re.compile(r'.*android:versionCode="([0-9]+?)".*').search
|
||||
vnsearch = re.compile(r'.*android:versionName="([^@]+?)".*').search
|
||||
vnsearch = re.compile(r'.*android:versionName="([^"]+?)".*').search
|
||||
psearch = re.compile(r'.*package="([^"]+)".*').search
|
||||
vnsearch_xml = re.compile(r'.*"(app_|)version">([^<]+?)<.*').search
|
||||
version = None
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue