[android] fix build result apk path

This commit is contained in:
2020-02-19 21:38:45 +03:00
parent 141470c519
commit 90f1a9b77f
3 changed files with 6 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
0.1.6
-----
* Android: fix build result apk path
0.1.5
-----
* Haxe: default version 4.0.5

View File

@@ -105,7 +105,7 @@ class Haxe extends Sdk {
const target = path.resolve(buildDir, platform, 'bin');
fse.emptyDirSync(target);
const result = {
'android': 'app/build/outputs/apk/*-debug.apk',
'android': `app/build/outputs/**/${config.meta.filename}-debug.apk`,
'flash': '*.swf',
}[platform] || '**/*';
return this.haxelib(args).then(() => {

View File

@@ -1,6 +1,6 @@
{
"name": "gulp-haxetool",
"version": "0.1.5",
"version": "0.1.6",
"description": "HaXe Tool for Gulp",
"main": "index.js",
"dependencies": {