Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

react-native

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

like image 745
Balaji Gopal Avatar asked Mar 19 '18 14:03

Balaji Gopal


2 Answers

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 :)

like image 197
Vladislav Mykhailenko Avatar answered Oct 19 '22 08:10

Vladislav Mykhailenko


try to change your URL of Chrome from http://localhost:8081/debugger-ui/ to http://192.168.XXXX.XXXX.xip.io:8081/debugger-ui/

source: https://github.com/facebook/react-native/issues/17618

like image 10
Chotala Paresh Avatar answered Oct 19 '22 06:10

Chotala Paresh