React Native Debug JS Remotely Error window.deltaUrlToBlobUrl is not a function

React Native

React Native Problem Overview


I am trying to to debug the react native app, If I don't try to debug JS remotely then everything is fine, but when I try to debug JS remotely I do get this error.

enter image description here

React Native Solutions


Solution 1 - React Native

I had this error too. The reason for me was the opened debugger tab in chrome from previous session. So when I closed it everything works fine now :)

Solution 2 - React Native

Solution 3 - React Native

I had same error, I just closed the browser and refreshed my simulator. It may open the browser window again with debugging window. But it takes care of the error. If not I suggest terminating your simulator and running the build commands again.

Solution 4 - React Native

This can be solved by restarting JS debugging and closing existing debugger.

  • Close Chrome debugger session

On iOS, do:

  • CMD + CTRL + Z
  • Press Stop Remote JS Debugging
  • CMD + CTRL + Z Again
  • enable Remote JS Debugging

Almost the same on Android, but the difference is the keyboard command it is CMD + M on Mac or CTRL+M on Windows devices.

Solution 5 - React Native

Close emulator.

Close node console which get opened after executing command react-native run-android.

Start emulator again.

Run project again.

Hope this help.

Solution 6 - React Native

i just cleared my browser cache and my app cache and its working now this error appears when you have

Solution 7 - React Native

I installed chrome CORS extension and enabled the CORS then it worked, Even If I open chrome with disable security manually then also it didn't worked for me until I install the extension.

Solution 8 - React Native

Aha! Found a better, less hacky solution. It seems when I upgraded Expo client on windows, it changed my default 'host'. Click the cog and change 'host' to 'LAN' to avoid CORSenter image description here

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionBalaji GopalView Question on Stackoverflow
Solution 1 - React NativeVladislav MykhailenkoView Answer on Stackoverflow
Solution 2 - React NativeChotala PareshView Answer on Stackoverflow
Solution 3 - React NativePaulView Answer on Stackoverflow
Solution 4 - React NativeJojo NarteView Answer on Stackoverflow
Solution 5 - React NativeSantosh KadamView Answer on Stackoverflow
Solution 6 - React NativeSyed Amir AliView Answer on Stackoverflow
Solution 7 - React NativeBalaji GopalView Answer on Stackoverflow
Solution 8 - React NativewebdevinciView Answer on Stackoverflow