Skip to content

Commit e62784e

Browse files
committed
fix: CFBundleIdentifier override warning
1 parent 1fc817f commit e62784e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/services/ios-project-service.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { IOSProvisionService } from "./ios-provision-service";
1313
import { IOSEntitlementsService } from "./ios-entitlements-service";
1414
import { IOSBuildData } from "../data/build-data";
1515
import { IOSPrepareData } from "../data/prepare-data";
16-
import { BUILD_XCCONFIG_FILE_NAME, IosProjectConstants } from "../constants";
16+
import { BUILD_XCCONFIG_FILE_NAME, CONFIG_FILE_NAME_DISPLAY, IosProjectConstants } from "../constants";
1717
import { hook } from "../common/helpers";
1818
import {
1919
IPlatformData,
@@ -1489,7 +1489,7 @@ export class IOSProjectService extends projectServiceBaseLib.PlatformProjectServ
14891489
infoPlist.CFBundleIdentifier !== mergedPlist.CFBundleIdentifier
14901490
) {
14911491
this.$logger.warn(
1492-
"[WARNING]: The CFBundleIdentifier key inside the 'Info.plist' will be overriden by the 'id' inside 'package.json'."
1492+
`[WARNING]: The CFBundleIdentifier key inside the 'Info.plist' will be overriden by the 'id' set inside the "${CONFIG_FILE_NAME_DISPLAY}".`
14931493
);
14941494
}
14951495
}

0 commit comments

Comments
 (0)