Can I enable neverStripDebugInfo for native build?

android and iOS.

Any update on this? I have

build =
    {
        neverStripDebugInfo = true,
    },

So that I can get the proper error message in a runtime error:

local function onUnhandledError(event)
local msg = tostring(event.errorMessage)
print(msg)
end
Runtime:addEventListener(“unhandledError”, onUnhandledError)

But when I build through native iOS, I get gibberish. The filename, line number etc are stripped. Any suggestion how to keep the unhandledError message on a native build?