mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 23:42:37 +03:00
Replace NDK r10d with r10e
This commit is contained in:
parent
5985bb4a0b
commit
52c2ca1fe7
7 changed files with 17 additions and 17 deletions
|
@ -51,7 +51,7 @@ default_config = {
|
|||
'sdk_path': "$ANDROID_HOME",
|
||||
'ndk_paths': {
|
||||
'r9b': None,
|
||||
'r10d': "$ANDROID_NDK"
|
||||
'r10e': "$ANDROID_NDK"
|
||||
},
|
||||
'build_tools': "22.0.1",
|
||||
'ant': "ant",
|
||||
|
@ -194,7 +194,7 @@ def read_config(opts, config_file='config.py'):
|
|||
|
||||
def get_ndk_path(version):
|
||||
if version is None:
|
||||
version = 'r10d' # latest
|
||||
version = 'r10e' # latest
|
||||
paths = config['ndk_paths']
|
||||
if version not in paths:
|
||||
return ''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue