From f36665d754e7454c5b9380589d7f3c6e17c26dff Mon Sep 17 00:00:00 2001 From: Brian Beckerle <49686530+brainbicycle@users.noreply.github.com> Date: Fri, 12 Dec 2025 14:25:25 -0500 Subject: [PATCH] make project name and codegen config consistent --- docs/turbo-native-modules-ios.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/turbo-native-modules-ios.md b/docs/turbo-native-modules-ios.md index b471497850b..c0c61590558 100644 --- a/docs/turbo-native-modules-ios.md +++ b/docs/turbo-native-modules-ios.md @@ -132,11 +132,11 @@ Modify the `package.json` as it follows: "test": "jest" }, "codegenConfig": { - "name": "AppSpecs", + "name": "NativeLocalStorageSpec", "type": "modules", "jsSrcsDir": "specs", "android": { - "javaPackageName": "com.sampleapp.specs" + "javaPackageName": "com.nativelocalstorage" }, // highlight-add-start "ios": { @@ -155,7 +155,7 @@ At this point, you need to re-install the pods to make sure that codegen runs ag ```bash # from the ios folder bundle exec pod install -open SampleApp.xcworkspace +open TurboModuleExample.xcworkspace ``` If you now build your application from Xcode, you should be able to build successfully.