Skip to content

Commit

Permalink
fix: CFBundleIdentifier override warning
Browse files Browse the repository at this point in the history
  • Loading branch information
rigor789 committed Jul 21, 2021
1 parent 1fc817f commit e62784e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/services/ios-project-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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}".`
);
}
}
Expand Down

0 comments on commit e62784e

Please sign in to comment.