mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-09 00:40:11 +01:00
Create a list of native code archs
This commit is contained in:
parent
a3e082ab7f
commit
2f5da8ed91
@ -291,7 +291,7 @@ def scan_apks(apps, apkcache, repodir, knownapks):
|
|||||||
elif line.startswith("sdkVersion:"):
|
elif line.startswith("sdkVersion:"):
|
||||||
thisinfo['sdkversion'] = re.match(sdkversion_pat, line).group(1)
|
thisinfo['sdkversion'] = re.match(sdkversion_pat, line).group(1)
|
||||||
elif line.startswith("native-code:"):
|
elif line.startswith("native-code:"):
|
||||||
thisinfo['nativecode'] = re.match(string_pat, line).group(1)
|
thisinfo['nativecode'] = line[14:-1].split("' '")
|
||||||
elif line.startswith("uses-permission:"):
|
elif line.startswith("uses-permission:"):
|
||||||
perm = re.match(string_pat, line).group(1)
|
perm = re.match(string_pat, line).group(1)
|
||||||
if perm.startswith("android.permission."):
|
if perm.startswith("android.permission."):
|
||||||
|
Loading…
Reference in New Issue
Block a user