admin管理员组文章数量:1333618
I got this message in Xcode when I start the emulator:
Failed to resolve host network app id to config: bundleID: com.apple.WebKit.Networking
What is this message about and how should I fix it ? It looks like it's what makes requests to Firebase to fail.
here is a screenshot
I got this message in Xcode when I start the emulator:
Failed to resolve host network app id to config: bundleID: com.apple.WebKit.Networking
What is this message about and how should I fix it ? It looks like it's what makes requests to Firebase to fail.
here is a screenshot
Share Improve this question asked Nov 20, 2024 at 15:52 Lucien DuboisLucien Dubois 1,7145 gold badges33 silver badges57 bronze badges2 Answers
Reset to default 0Solved here with the version 11.25.0
npm i [email protected]
There's a lot of us experimenting trouble with the latest react native for the initial loading of react native webview. I had the same error code for the webview embedded in react native youtube iframe. Just actualising the component with a key props solved it.
Here's my code (using webview 13.12.4) :
const [webviewKey, setWebviewKey]=useState(1)
useEffect(() => {
if (Platform.OS === "ios"){
setTimeout(()=>setWebviewKey(key=>key+1), 50)
}
}, [])
<YoutubePlayer
height={RPW(56)}
videoId={article.video_id}
webViewProps={{
key : webviewKey,
}}
/>
For more details : https://github/react-native-webview/react-native-webview/issues/3616
本文标签: xcodeFailed to resolve host network app id to config bundleID comappleWebKitNetworkingStack Overflow
版权声明:本文标题:xcode - Failed to resolve host network app id to config: bundleID: com.apple.WebKit.Networking - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742347082a2457739.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论