We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0d4298 commit ca32dc2Copy full SHA for ca32dc2
lib/services/ios-project-service.ts
@@ -145,8 +145,14 @@ export class IOSProjectService extends projectServiceBaseLib.PlatformProjectServ
145
!!buildOptions.buildForDevice ||
146
!!buildOptions.buildForAppStore;
147
if (forDevice) {
148
+ const ipaFileName = _.find(
149
+ this.$fs.readDirectory(
150
+ this._platformData.getBuildOutputPath(buildOptions)
151
+ ),
152
+ (entry) => path.extname(entry) === ".ipa"
153
+ );
154
return {
- packageNames: [`${projectData.projectName}.ipa`],
155
+ packageNames: [ipaFileName, `${projectData.projectName}.ipa`],
156
};
157
}
158
0 commit comments