Having the error message with the file and line number when the app crashes is very useful in development. But I think is very bad that a user can see the file (specially the path) and the line of the error.
However, the only alternative that I can find is making use of the “unhandledError” event and return true. But this can won’t abort the app and it’ll leave it in a bad state. Can I have the app aborted without showing the file/line of the error?
Thanks.