FBDefines/FBDefines.h not found #6446
FedorSh-illumiti
started this conversation in
General
Replies: 2 comments 4 replies
-
Hi there. That's because Flipper doesn't work when Try the setup mentioned in Flipper's documentation (check out line 27). |
Beta Was this translation helpful? Give feedback.
4 replies
-
https://stackoverflow.com/questions/73894220/flipperkit-flipperclient-h-file-not-found this resolved the error for me |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi. After the version upgrade from ^14.11.1 to 15.2.0 the project cannot be built in Xcode.
podfile
require_relative '../node_modules/react-native/scripts/react_native_pods'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
platform :ios, '15.0'
target 'FDC' do
config = use_native_modules!
use_react_native!(
:path => config[:reactNativePath],
# to enable hermes on iOS, change
false
totrue
and then install pods:hermes_enabled => false
)
use_frameworks! :linkage => :static
target 'FDC' do
inherit! :complete
# Pods for testing
end
use_flipper!({ 'Flipper' => '0.156.0' })
post_install do |installer|
react_native_post_install(installer)
__apply_Xcode_12_5_M1_post_install_workaround(installer)
end
end
Beta Was this translation helpful? Give feedback.
All reactions