Skip to content

Commit 4d6a4eb

Browse files
authored
Merge pull request #4986 from NativeScript/kddimitrov/fix-bundle-output-path
fix: aab name changed to include build mode(debug, release)
2 parents 4fa7e65 + 18b43be commit 4d6a4eb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/services/android-project-service.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ export class AndroidProjectService extends projectServiceBaseLib.PlatformProject
6363
if (buildOptions.androidBundle) {
6464
return {
6565
packageNames: [
66-
`${constants.APP_FOLDER_NAME}${constants.AAB_EXTENSION_NAME}`
66+
`${constants.APP_FOLDER_NAME}${constants.AAB_EXTENSION_NAME}`,
67+
`${constants.APP_FOLDER_NAME}-${buildMode}${constants.AAB_EXTENSION_NAME}`
6768
]
6869
};
6970
}

0 commit comments

Comments
 (0)