Skip to content

Commit 18b43be

Browse files
committed
fix: aab name changed to include build mode(debug, release)
1 parent da8598f commit 18b43be

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)