Skip to content
This repository was archived by the owner on Sep 26, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 8 additions & 10 deletions docs/getting-started/react-native-ios.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,14 @@ require_relative '../node_modules/@react-native-community/cli-platform-ios/nativ

target 'your-app-name' do
config = use_native_modules!
use_react_native!(path: config['reactNativePath'])

# Enables Flipper.
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
# you should disable these next few lines.
use_flipper!({'Flipper' => '0.58.0'}) # should match the version of your Flipper client app
post_install do |installer|
flipper_post_install(installer)
end
use_react_native!(
:path => config[:reactNativePath],
# Enables Flipper.
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
# you should disable these next few lines.
:flipper_configuration => FlipperConfiguration.enabled(["Debug"], { 'Flipper' => '0.164.0' }),
)
end
```

Expand Down