Is anyone able to get this to work on an Android device? I an unable to get the device to register the faceDown orientation, regardless of build settings.
[lua]
local function introOrientation(event)
local currentOrientation = event.type
print (currentOrientation)
if currentOrientation == “faceDown” then
print (“UPSIDE DOWN”)
end
end
Runtime:addEventListener( “orientation”, introOrientation )
[/lua]


