Thank you for the immediate clarifying! @SGS
Yes we do not need it yet but better to stay in front if possible
Thank you for the immediate clarifying! @SGS
Yes we do not need it yet but better to stay in front if possible
For those who had the same problem in the end this is the best thing at the moment:
local platform = system.getInfo('platformName') if( platform == "Android" ) then local function onResize( event ) if (system.getInfo("androidApiLevel") \>= 19) then native.setProperty("androidSystemUiVisibility", "immersiveSticky") else native.setProperty("androidSystemUiVisibility", "lowProfile") end end Runtime:addEventListener( "resize", onResize ) end
I guees it should be:
local platform = system.getInfo('platform')
instead of platformName which is deprecated.