Show the status bar on native mobile

How can I make the status bar on the mobile devices appear?
fullscreen attribute is already set as false on the <window> tag, but doesn’t work (OpenFL 6.1.0).

Also, is it possible to handle its background color and text color?

Good reference: http://facebook.github.io/react-native/docs/statusbar.html

Edit

Hacking into it. Found something that could be useful:

Exported GameActivity.java has its updateSystemUI() empty, as expected (I guess).
But AndroidManifest.xml has an android:theme="@android:style/Theme.NoTitleBar.Fullscreen" attribute at tag.

Edit 2

Theme is hard-coded into manifest, there is no conditionals handling it: https://github.com/openfl/lime/blob/5.4.0/templates/android/template/app/src/main/AndroidManifest.xml#L12