mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-10-09 02:41:06 +03:00
Create a list of native code archs
This commit is contained in:
parent
a3e082ab7f
commit
2f5da8ed91
1 changed files with 1 additions and 1 deletions
|
@ -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."):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue