This is an automated email from the ASF dual-hosted git repository.
dpogue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-ios.git
The following commit(s) were added to refs/heads/master by this push:
new d39c7874 fix(xcode): Ensure we do NFD normalization on PRODUCT_NAME
(#1621)
d39c7874 is described below
commit d39c78740ea21aaa849f07c4c12a7cc345e28e50
Author: Darryl Pogue <[email protected]>
AuthorDate: Sat Feb 28 00:28:44 2026 -0800
fix(xcode): Ensure we do NFD normalization on PRODUCT_NAME (#1621)
---
lib/prepare.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/prepare.js b/lib/prepare.js
index 312ff008..3dc44606 100644
--- a/lib/prepare.js
+++ b/lib/prepare.js
@@ -290,7 +290,7 @@ function handleBuildSettings (platformConfig, locations,
infoPlist) {
}
const pkg = platformConfig.getAttribute('ios-CFBundleIdentifier') ||
platformConfig.packageName();
- const name = platformConfig.name();
+ const name = platformConfig.name().normalize('NFD');
const version = platformConfig.version();
const displayName = platformConfig.shortName();
const CFBundleVersion = platformConfig.getAttribute('ios-CFBundleVersion')
|| default_CFBundleVersion(version);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]