Application restart causing it to crash on samsung sm-t230
Environment
S-SM-T230 Samsung tablet running Android 4.4.2 with Air 16 on-board.
Problem descriptions
Any air application multiple (2-3) start/close sequence or even minimize/expand causing device to freeze and crash throwing Fatal signal 11 (SIGSEGV) at 0x00000005 (code=1).
It is 100% reproducible with any Air app even if there is only one button "exit" (as in attached showcase) or simple empty stage. So nothing related with app logic.
Even if you try to dispose app using Android task manager it would still sometimes crash on next startup.
Steps to reproduce
1) Start some air app
2) Close it using nativeApplication.exit() (in some cases you could even just minimize/expand it but this takes more time to crash)
3) Repeat 1-2 until it crash (usually 2-3 times for "exit button" app.
Expected result
App would normally release from device memory then start again (as it does on any other device i tested).
Actual result
Device would slowdown during restart sequence, then app would stop to response and crash.
Here i made some video showing the problem.
This is simplified test application with it's source.
And that one is some logcat output.
Additional information
I also tried to reproduce this effect with native java app and have no luck at all. Used this piece of code to exit app:
activity.finish();
System.exit(0);
Then i tried to use this "immune" code as java native extension to exit my air app and it was still crashing.
Tried to build using air version 4, 15 and 16.
