Jonathan Sosa
Jonathan Sosa
Facing the same issue. Did you find any hints?
``` installer.pods_project.build_configurations.each do |config| config.build_settings["CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES"] = true end ``` Didn't fix it for me, I get the error: ``` XXXX/node_modules/react-native/React/Base/RCTRuntimeExecutorFromBridge.h:10:9 Include of non-modular header inside framework module 'React.RCTRuntimeExecutorFromBridge': XXXX/ios/Pods/Headers/Public/React-runtimeexecutor/ReactCommon/RuntimeExecutor.h' ```
``` [INSTALL_PODS] [!] The 'Pods-test' target has frameworks with conflicting names: webrtc.xcframework. ``` Had the same problem and removing `react-native-webrtc` from my package.json fixed it.
Anyone found a solution for this?
Having the same issue with `@testing-library/[email protected]"` and `@testing-library/[email protected]"` (Verified with `yarn why` there are no other versions of the packages.
This workaround didn't fix it for me - Perhaps because I'm using Formik? 🤔 ``` const handleChange = (e) => { const { value } = e.target; setInnerValue(() => value);...
I'm experiencing the same with OpenAI Realtime API ``` "@livekit/agents": "^1.0.21", "@livekit/agents-plugin-openai": "^1.0.21", "@livekit/rtc-node": "^0.13.21", ``` Using JS SDK Like so ``` import { useChat, } from '@livekit/components-react' ... const...