mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 06:50:29 +03:00
Indicate if an app requires root privileges
This commit is contained in:
parent
db579a4eba
commit
92a2022d2c
5 changed files with 14 additions and 0 deletions
|
|
@ -288,6 +288,8 @@ for app in apps:
|
|||
addElement('marketvercode', app['marketvercode'], doc, apel)
|
||||
if not (app['antifeatures'] is None):
|
||||
addElement('antifeatures', app['antifeatures'], doc, apel)
|
||||
if app['requiresroot']:
|
||||
addElement('requirements', 'root', doc, apel)
|
||||
|
||||
# Sort the apk list into version order, just so the web site
|
||||
# doesn't have to do any work by default...
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue