You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We facing a strange issue in latest react-native 0.79 and firebase.
a. if we remove use_frameworks! :linkage => :static, we get FirebaseAuth not found error.
b. If we add "use_frameworks! :linkage => :static", we get "RCT_ENABLE_INSPECTOR needs to be set to fulfill RCT_REMOTE_PROFILE"
c. if we enable that in Podfile, we get "'RCTDevLoadingViewProtocol.h' file not found".
Please share the solution. seems use_frameworks is not working. if we remove that, Firebase is not working.
Our POD File is provided below.
The text was updated successfully, but these errors were encountered:
linkage = ENV['USE_FRAMEWORKS']
if linkage != nil
Pod::UI.puts "Configuring Pod with #{linkage}ally linked Frameworks".green
use_frameworks! :linkage => linkage.to_sym
end
pod 'react-native-maps-generated', :path => '../node_modules/react-native-maps/react-native-maps-generated.podspec'
pod 'react-native-maps', :path => '../node_modules/react-native-maps'
target 'TravelTeacherPartner' do
config = use_native_modules!
use_react_native!(
:path => config[:reactNativePath],
# An absolute path to your application root.
:app_path => "#{Pod::Config.instance.installation_root}/..",
:hermes_enabled => true # ✅ Enable Hermes
)
We facing a strange issue in latest react-native 0.79 and firebase.
a. if we remove use_frameworks! :linkage => :static, we get FirebaseAuth not found error.
b. If we add "use_frameworks! :linkage => :static", we get "RCT_ENABLE_INSPECTOR needs to be set to fulfill RCT_REMOTE_PROFILE"
c. if we enable that in Podfile, we get "'RCTDevLoadingViewProtocol.h' file not found".
Please share the solution. seems use_frameworks is not working. if we remove that, Firebase is not working.
Our POD File is provided below.
The text was updated successfully, but these errors were encountered: