[android] fix android-ndk version

This commit is contained in:
2019-08-23 00:03:45 +03:00
parent e904b46f4a
commit 8205a4cb0c
5 changed files with 22 additions and 6 deletions

View File

@@ -97,7 +97,7 @@ class HaxeBuilder extends Builder {
'platform-tools',
'build-tools;27.0.3',
'platforms;android-19',
'ndk-bundle',
//'ndk-bundle',
'lldb;3.1',
'cmake;3.6.4111459',
]));
@@ -282,7 +282,8 @@ class Html5Runner extends Runner {
call() {
return gulp.src(this.targetPath)
.pipe(webserver({
host: 'localhost', port: 3000,
// ToDo: config?
host: '0.0.0.0', port: 3000,
open: true,
fallback: 'index.html'
}));