Yes.
It Works well for me, hiding completely the menu bar on my HTC E8 (Lollipop) when adding to file AGKHelper.java (line 1319) => AGKHelper Class => OnStart Method :
public static void OnStart(final Activity act ) // Add the "final" keyword
{
// ++++++++++++ TO ADD ++++++++++++//
act.runOnUiThread(new Runnable() {
@Override
public void run() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
int UI_OPTIONS = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;
act.getWindow().getDecorView().setSystemUiVisibility(UI_OPTIONS);
}
}
});
// +++++++++++++++++++++++++++++++ //
isVisible = 1;
...
But Paul, is it possible to also modify this to the AGKLibs to have this immersive mode automatically when i use the "Export to APK" menu in Tier1 Editor ?