File tree 1 file changed +2
-1
lines changed
1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -329,6 +329,7 @@ export class AndroidProjectService extends projectServiceBaseLib.PlatformProject
329
329
let task ;
330
330
const gradleArgs = this . getGradleBuildOptions ( buildConfig , projectData ) ;
331
331
const baseTask = buildConfig . androidBundle ? "bundle" : "assemble" ;
332
+ const outputPath = buildConfig . androidBundle ? this . _platformData . bundleBuildOutputPath : this . _platformData . deviceBuildOutputPath ;
332
333
if ( this . $logger . getLevel ( ) === "TRACE" ) {
333
334
gradleArgs . unshift ( "--stacktrace" ) ;
334
335
gradleArgs . unshift ( "--debug" ) ;
@@ -357,7 +358,7 @@ export class AndroidProjectService extends projectServiceBaseLib.PlatformProject
357
358
} )
358
359
) ;
359
360
360
- await this . $filesHashService . saveHashesForProject ( this . _platformData , this . _platformData . deviceBuildOutputPath ) ;
361
+ await this . $filesHashService . saveHashesForProject ( this . _platformData , outputPath ) ;
361
362
}
362
363
363
364
private getGradleBuildOptions ( settings : IAndroidBuildOptionsSettings , projectData : IProjectData ) : Array < string > {
You can’t perform that action at this time.
0 commit comments