Lucien Dubois
Lucien Dubois

Reputation: 1694

Failed to resolve host network app id to config: bundleID: com.apple.WebKit.Networking

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

enter image description here

Upvotes: 4

Views: 2654

Answers (2)

Jul
Jul

Reputation: 1

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.com/react-native-webview/react-native-webview/issues/3616

Upvotes: 0

Adriel Schmitz
Adriel Schmitz

Reputation: 1

Solved here with the version 11.25.0

npm i [email protected]

Upvotes: 0

Related Questions