From e62784ed802cb3f63cb2b157980af11d7b91b2c1 Mon Sep 17 00:00:00 2001 From: rigor789 Date: Wed, 21 Jul 2021 20:38:29 +0200 Subject: [PATCH] fix: CFBundleIdentifier override warning --- lib/services/ios-project-service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/services/ios-project-service.ts b/lib/services/ios-project-service.ts index 333451a777..f5710ecfeb 100644 --- a/lib/services/ios-project-service.ts +++ b/lib/services/ios-project-service.ts @@ -13,7 +13,7 @@ import { IOSProvisionService } from "./ios-provision-service"; import { IOSEntitlementsService } from "./ios-entitlements-service"; import { IOSBuildData } from "../data/build-data"; import { IOSPrepareData } from "../data/prepare-data"; -import { BUILD_XCCONFIG_FILE_NAME, IosProjectConstants } from "../constants"; +import { BUILD_XCCONFIG_FILE_NAME, CONFIG_FILE_NAME_DISPLAY, IosProjectConstants } from "../constants"; import { hook } from "../common/helpers"; import { IPlatformData, @@ -1489,7 +1489,7 @@ export class IOSProjectService extends projectServiceBaseLib.PlatformProjectServ infoPlist.CFBundleIdentifier !== mergedPlist.CFBundleIdentifier ) { this.$logger.warn( - "[WARNING]: The CFBundleIdentifier key inside the 'Info.plist' will be overriden by the 'id' inside 'package.json'." + `[WARNING]: The CFBundleIdentifier key inside the 'Info.plist' will be overriden by the 'id' set inside the "${CONFIG_FILE_NAME_DISPLAY}".` ); } }