mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 06:50:29 +03:00
Add NDK r10d, this time alongside r9b
Specified per-build with ndk=<version> defaulting to the oldest, r9b.
This commit is contained in:
parent
43092407a3
commit
f60f1bc59e
9 changed files with 130 additions and 64 deletions
|
|
@ -25,6 +25,8 @@ import logging
|
|||
|
||||
from collections import OrderedDict
|
||||
|
||||
import common
|
||||
|
||||
srclibs = None
|
||||
|
||||
|
||||
|
|
@ -100,6 +102,7 @@ flag_defaults = OrderedDict([
|
|||
('scandelete', []),
|
||||
('build', ''),
|
||||
('buildjni', []),
|
||||
('ndk', 'r9b'), # defaults to oldest
|
||||
('preassemble', []),
|
||||
('antcommands', None),
|
||||
('novcheck', False),
|
||||
|
|
@ -560,6 +563,7 @@ def fill_build_defaults(build):
|
|||
continue
|
||||
build[flag] = value
|
||||
build['type'] = get_build_type()
|
||||
build['ndk_path'] = common.get_ndk_path(build['ndk'])
|
||||
|
||||
|
||||
# Parse metadata for a single application.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue