Hi guys,
I’m using the shadow module. I’m finding problems if I remove the “navigation bar” in android devices.
The code I use to remove the bar is this (in main):
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 onResize() Runtime:addEventListener( "resize", onResize ) end
When I create a version and test it on an android device with the bar all the shadows are out of phase.
How can I solve this?