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 020ed8e commit f7029acCopy full SHA for f7029ac
cli/src/cordova.ts
@@ -353,6 +353,12 @@ export async function logCordovaManualSteps(
353
354
async function logiOSPlist(configElement: any, config: Config, plugin: Plugin) {
355
let plistPath = resolve(config.ios.nativeTargetDirAbs, 'Info.plist');
356
+ if (config.app.extConfig.ios?.scheme) {
357
+ plistPath = resolve(
358
+ config.ios.nativeProjectDirAbs,
359
+ `${config.app.extConfig.ios?.scheme}-Info.plist`,
360
+ );
361
+ }
362
if (!(await pathExists(plistPath))) {
363
plistPath = resolve(
364
config.ios.nativeTargetDirAbs,
0 commit comments