Closed akkartik closed 1 year ago
I updated SDL to 2.28.3 recently. Observed behavior in Galaxy A52s is same as seen in your (and my) laptop.
Can you try to use the latest nightly APK and see if it solves the issue?
How can I find the nightly APK? I tried redownloading from the repo and checking tags here, but I don't see any mention of nightly or a date..
It's available in the GitHub Actions. https://github.com/love2d/love-android/actions/runs/6336734575
Pick the love-android-debug.apk
. Make sure you uninstall existing (nightly) APK as their signature is different on every build.
Hold on, I can't seem to click on those artifacts on the Android tablet..
GitHub requires you to login to get the artifacts.
Don't worry. https://nightly.link/love2d/love-android/actions/runs/6336734575
Ugh, after I uninstalled the main LÖVE app on Android and installed this the tablet no longer knows how to run .love files.. Any ideas on what might have gotten messed up?
Ok I managed to run the original .love file with love-android-debug.apk from the nightly build. Same result, unfortunately.
This looks like a device-specific issue then. Unfortunately not much we can do about it.
Same with the APK losing ability to run .love files. There's not much we can do as the restriction is imposed by Android itself.
Android device: Galaxy Tab A7 Lite Model name: SM-T220 Android version: 13 Google Play system update: July 1, 2023 Kernel version: 4.19.191 Android security patch level: June 1, 2023
Test program
This program prints out 3 rows:
love.keyboard.isDown()
was true for eitherlctrl
orrctrl
.love.keypressed
andlove.keyreleased
events, denoted byd
andu
respectively.Expected behavior as seen on a laptop
Pressing
lctrl
orrctrl
appends to all 3 rows. (The bottom row only showskeypressed
ord
.)Observed behavior on the Galaxy Tab A7 Lite
Tapping the
ctrl
key on the on-screen soft keyboard appends to none of the 3 rows.Tapping the
ctrl
key in combination with any other keys (e.g.x
) appends justx
to the top row and nothing else.