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.