File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 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
329329 let task ;
330330 const gradleArgs = this . getGradleBuildOptions ( buildConfig , projectData ) ;
331331 const baseTask = buildConfig . androidBundle ? "bundle" : "assemble" ;
332+ const outputPath = buildConfig . androidBundle ? this . _platformData . bundleBuildOutputPath : this . _platformData . deviceBuildOutputPath ;
332333 if ( this . $logger . getLevel ( ) === "TRACE" ) {
333334 gradleArgs . unshift ( "--stacktrace" ) ;
334335 gradleArgs . unshift ( "--debug" ) ;
@@ -357,7 +358,7 @@ export class AndroidProjectService extends projectServiceBaseLib.PlatformProject
357358 } )
358359 ) ;
359360
360- await this . $filesHashService . saveHashesForProject ( this . _platformData , this . _platformData . deviceBuildOutputPath ) ;
361+ await this . $filesHashService . saveHashesForProject ( this . _platformData , outputPath ) ;
361362 }
362363
363364 private getGradleBuildOptions ( settings : IAndroidBuildOptionsSettings , projectData : IProjectData ) : Array < string > {
You can’t perform that action at this time.
0 commit comments