From: Daniel Martí Date: Mon, 17 Jun 2013 16:20:29 +0000 (+0200) Subject: Add 'nativecode' field to apks which use it X-Git-Tag: 0.1~531^2~1 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=d3ac6899ff45fe7d733f3785ff2299682bdbcc96;p=fdroidserver.git Add 'nativecode' field to apks which use it --- diff --git a/fdroidserver/update.py b/fdroidserver/update.py index 2d6c5845..9f06e672 100644 --- a/fdroidserver/update.py +++ b/fdroidserver/update.py @@ -530,6 +530,8 @@ def make_index(apps, apks, repodir, archive, categories): perms = "" if len(apk['permissions']) > 0: addElement('permissions', ','.join(apk['permissions']), doc, apkel) + if len(apk['nativecode']) > 0: + addElement('nativecode', ','.join(apk['nativecode']), doc, apkel) if len(apk['features') > 0: addElement('features', ','.join(apk['features']), doc, apkel)