We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 283b31c commit 9fe5509Copy full SHA for 9fe5509
1 file changed
lib/services/android-project-service.ts
@@ -109,7 +109,8 @@ export class AndroidProjectService extends projectServiceBaseLib.PlatformProject
109
private getDeviceBuildOutputPath(currentPath: string, projectData: IProjectData): string {
110
const currentPlatformData: IDictionary<any> = this.$projectDataService.getNSValue(projectData.projectDir, constants.TNS_ANDROID_RUNTIME_NAME);
111
const platformVersion = currentPlatformData && currentPlatformData[constants.VERSION_STRING];
112
- const normalizedPath = path.join(currentPath, "debug");
+ const buildType = this.$options.release === true ? "release" : "debug";
113
+ const normalizedPath = path.join(currentPath, buildType);
114
115
if (semver.valid(platformVersion)) {
116
const gradleAndroidPluginVersion3xx = "4.0.0";
0 commit comments