You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This might be a non-issue because I only encountered this error when importing this module into my frida typescript project. So it might as well be closed, I am just documenting it for others to see.
I encountered the error SyntaxError: Could not find export 'JNI_OK' in module '/agent/frida-java-bridge/lib/result.js'
when importing the module in a typescript file with import { getApi, withRunnableArtThread, ArtStackVisitor } from './frida-java-bridge/lib/android.js';.
It seems that for some reason Node doesn't like this line:
This might be a non-issue because I only encountered this error when importing this module into my frida typescript project. So it might as well be closed, I am just documenting it for others to see.
I encountered the error
SyntaxError: Could not find export 'JNI_OK' in module '/agent/frida-java-bridge/lib/result.js'
when importing the module in a typescript file with
import { getApi, withRunnableArtThread, ArtStackVisitor } from './frida-java-bridge/lib/android.js';
.It seems that for some reason Node doesn't like this line:
frida-java-bridge/lib/result.js
Line 11 in 9199ce4
When I removed "
:0
" it worked though:The text was updated successfully, but these errors were encountered: