From 0abd76346d23d753561822535d3533086d8bd82b Mon Sep 17 00:00:00 2001 From: Nathan Ahn Date: Fri, 12 Jun 2026 16:41:17 -0400 Subject: [PATCH 1/2] Fixing special character handling --- plugin/src/withPlist.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugin/src/withPlist.ts b/plugin/src/withPlist.ts index 99ddee7..8cde400 100644 --- a/plugin/src/withPlist.ts +++ b/plugin/src/withPlist.ts @@ -52,7 +52,7 @@ export const withPlist: ConfigPlugin<{ }, NSAllowsLocalNetworking: config.developmentClient, }, - CFBundleName: "$(PRODUCT_NAME)", + CFBundleName: "$(PRODUCT_MODULE_NAME)", CFBundleDisplayName: "$(PRODUCT_NAME)", CFBundleIdentifier: "$(PRODUCT_BUNDLE_IDENTIFIER)", CFBundleVersion: "$(CURRENT_PROJECT_VERSION)", @@ -73,6 +73,8 @@ export const withPlist: ConfigPlugin<{ } } + infoPlist.CFBundleName = "$(PRODUCT_MODULE_NAME)"; + fs.mkdirSync(path.dirname(filePath), { recursive: true, }); From 2850ff330efc9da57b48285acbad16e51718b409 Mon Sep 17 00:00:00 2001 From: Nathan Ahn Date: Fri, 12 Jun 2026 16:44:55 -0400 Subject: [PATCH 2/2] v0.9.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 416fcb7..9a3ef16 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-app-clip", - "version": "0.9.0", + "version": "0.9.1", "description": "Config plugin to add an App Clip to a React Native iOS app", "main": "build/index.js", "types": "build/index.d.ts",