Babylon React Native Debugging

Hi,
I am using React Native to build a native application with Babylon. However, I am unable to debug the code. The log says that babylon native doesn’t support react native remote debugging. On searching I found out that using Hermes I can use chrome inspect to debug. However, I am unable to achieve the same. Can someone please tell me the steps to achieve browser debugging?

pinging @ryantrem :slight_smile:

I managed to find a solution. The following linked helped me:

PS: In build.gradle it is also required to toggle the value of Hermes here (Not mentioned in the doc)
def enableHermes = project.ext.react.get(“enableHermes”, true); //By Default it is set to false

Thank You.

2 Likes