So I’ve been tested this out on a few android devices and it works just fine but doesn’t work on the Kindle Fire 7
Here are the steps to replicate my issue
- Open the app
- Turn the screen off using the power button or let the screen timeout
- Turn the device back on
Here is the code that I’m running, very simple
local rect = display.newRect(10, 10, 300, 300) rect:addEventListener("tap", function() print("TAPPED"))
When testing on an android device everything works fine. On my kindle fire 7 though the print gets called perfectly until the screen turns off. Once the screen comes back on it no longer registers any tap events. I also tried the same with touch events and it has the same exact issue.
Just wondering if there is something I should check? I would assume it’s a bug though as it works fine on 10 other android devices I tested just not on the amazon device.