1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 23:23:27 +02:00

Create a list of native code archs

This commit is contained in:
Daniel Martí 2013-06-17 18:15:52 +02:00
parent a3e082ab7f
commit 2f5da8ed91

View File

@ -291,7 +291,7 @@ def scan_apks(apps, apkcache, repodir, knownapks):
elif line.startswith("sdkVersion:"):
thisinfo['sdkversion'] = re.match(sdkversion_pat, line).group(1)
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:"):
perm = re.match(string_pat, line).group(1)
if perm.startswith("android.permission."):