AlexTrotsenko / j2v8-debugger

This project is an add-on for the excellent J2V8 Project. It allows users to debug JS running in V8 using Chrome DevTools. Uses Stetho for communication with Chrome DevTools.
88 stars 24 forks source link

Not working with latest v8 builds #6

Closed jhorst11 closed 4 years ago

jhorst11 commented 4 years ago

V8 dropped the debug api that DebugHandler relies on so the debugger no longer works on later builds of v8. j2v8 will need to support the inspector api to re-enable debugging and j2v8-debugger will need to interface with that instead of the current DebugHandler.

There’s an open PR on j2v8 to add support for the inspector api: https://github.com/eclipsesource/J2V8/pull/491

AlexTrotsenko commented 4 years ago

@jhorst11 thanks for reporting an issue.

Changes are already implemented by @jamie-houston.

I have released 0.2.0, it's available in JitPack already: https://jitpack.io/#AlexTrotsenko/j2v8-debugger/0.2.0

jhorst11 commented 4 years ago

thanks @AlexTrotsenko & @jamie-houston !