1 Commits
0.1.5 ... 0.1.6

Author SHA1 Message Date
90f1a9b77f [android] fix build result apk path 2020-02-19 21:38:45 +03:00
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 0.1.5
----- -----
* Haxe: default version 4.0.5 * Haxe: default version 4.0.5

View File

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

View File

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