Replace NDK r10d with r10e

This commit is contained in:
Daniel Martí 2015-06-18 17:05:48 +02:00
parent 5985bb4a0b
commit 52c2ca1fe7
7 changed files with 17 additions and 17 deletions

View file

@ -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 ''