1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-05 18:50:09 +02:00

Merge branch 'master' of gitorious.org:f-droid/fdroidserver

This commit is contained in:
David Black 2013-07-14 16:04:50 +01:00
commit a871b38e7e

View File

@ -294,7 +294,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'] = line[14:-1].split("' '")
thisinfo['nativecode'] = list(line[14:-1].split("' '"))
elif line.startswith("uses-permission:"):
perm = re.match(string_pat, line).group(1)
if perm.startswith("android.permission."):