Can't Debug mobile app in chrome

Hi, I am Android developer, and I am new to React Native development.
I’ve forked jitsy repo, ran it on device. But when I want to debug, after click on debug button in RN developer menu it shows black screen and gives me an error:

Error: Unable to resolve module ./debugger-ui/debuggerWorker.aca173c4 from /Users/solovgeo/StudioProjects/talk/.: 

None of these files exist:
  * debugger-ui/debuggerWorker.aca173c4(.native|.native.js|.js|.native.json|.json|.native.ts|.ts|.native.tsx|.tsx|.native.svg|.svg)
  * debugger-ui/debuggerWorker.aca173c4/index(.native|.native.js|.js|.native.json|.json|.native.ts|.ts|.native.tsx|.tsx|.native.svg|.svg)
    at ModuleResolver.resolveDependency (/Users/solovgeo/StudioProjects/talk/node_modules/metro/src/node-haste/DependencyGraph/ModuleResolution.js:136:15)
    at DependencyGraph.resolveDependency (/Users/solovgeo/StudioProjects/talk/node_modules/metro/src/node-haste/DependencyGraph.js:231:43)
    at /Users/solovgeo/StudioProjects/talk/node_modules/metro/src/lib/transformHelpers.js:129:24
    at Server._resolveRelativePath (/Users/solovgeo/StudioProjects/talk/node_modules/metro/src/Server.js:1107:12)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Server._explodedSourceMapForURL (/Users/solovgeo/StudioProjects/talk/node_modules/metro/src/Server.js:1058:35)
    at async Promise.all (index 1)
    at async Server._symbolicate (/Users/solovgeo/StudioProjects/talk/node_modules/metro/src/Server.js:1009:26)
    at async Server._processRequest (/Users/solovgeo/StudioProjects/talk/node_modules/metro/src/Server.js:429:7)

What am I doing wrong?

It’s not possible to do that because we rely on some libraries which use synchronous methods, which prevent the Chrome debugger from running, alas.

Got it. What is the best way to debug the app? What would you recommend? I need to use breakpoints, logs, etc.

JUdiciously placed console.log statements is all we got.

Could you tell what are these libraries that preventing debugger from work?

react-native-webrtc. There is no way around it.