I have several professional apps that display the status bar. I recently noticed (with 2023.3700) that none of my apps are showing the status bar.
My code (I’ve never changed it) is:
display.setStatusBar(display.LightTransparentStatusBar)
if system.getInfo( "androidApiLevel" ) and system.getInfo( "androidApiLevel" ) < 19 then
-- Dims the navigation bar icons.
native.setProperty( "androidSystemUiVisibility", "lowProfile" )
else
-- It will cause the status and navigation bars to disappear (Only on Android KitKat (Api 19) and higher or Fire OS 2 (fork of API 15) and higher)
native.setProperty( "androidSystemUiVisibility", "immersiveSticky" )
end