I have been running and testing my android native app for weeks now in debug mode without issues. Today, I decided to test it in release mode by selecting "debuggable" as "false" in the android manifest and using ant release install to build.
However, when I attempt to run my app, I get an error message like:
I/DEBUG ( 264): signal 7 (SIGBUS), code 1 (BUS_ADRALN), fault addr 5c27f389
which I assume is a data alignment error (according to google). But as soon as I turn debuggable on, the app no longer crashes.
What could've caused this error? I'm not even sure where to start to look because the crash only occurs when I turn debuggable off.