mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 06:50:29 +03:00
Add support for gradle properties via gradleprops
This commit is contained in:
parent
5a0129d835
commit
06c94b3a44
3 changed files with 19 additions and 3 deletions
|
|
@ -105,6 +105,7 @@ flag_defaults = OrderedDict([
|
|||
('buildjni', []),
|
||||
('ndk', 'r10e'), # defaults to latest
|
||||
('preassemble', []),
|
||||
('gradleprops', []),
|
||||
('antcommands', None),
|
||||
('novcheck', False),
|
||||
])
|
||||
|
|
@ -522,7 +523,8 @@ def metafieldtype(name):
|
|||
|
||||
def flagtype(name):
|
||||
if name in ['extlibs', 'srclibs', 'patch', 'rm', 'buildjni', 'preassemble',
|
||||
'update', 'scanignore', 'scandelete', 'gradle', 'antcommands']:
|
||||
'update', 'scanignore', 'scandelete', 'gradle', 'antcommands',
|
||||
'gradleprops']:
|
||||
return 'list'
|
||||
if name in ['init', 'prebuild', 'build']:
|
||||
return 'script'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue