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
If a more complex native library is built, symbols are important to make sense of backtraces.
Currently iOS is the only backend that emits symbols on build.
We should add APP_STRIP_MODE := none to android. Android native libraries are stripped on deploy, so it doesn't leak symbols.
Since the desktop native libs are not post-processed before deploy, I don't see an easy way to include symbols at the moment without leaking them.
The text was updated successfully, but these errors were encountered:
If a more complex native library is built, symbols are important to make sense of backtraces.
Currently iOS is the only backend that emits symbols on build.
We should add
APP_STRIP_MODE := none
to android. Android native libraries are stripped on deploy, so it doesn't leak symbols.Since the desktop native libs are not post-processed before deploy, I don't see an easy way to include symbols at the moment without leaking them.
The text was updated successfully, but these errors were encountered: