Can you tell me what error shows up when trying to install the APK? Is it completely impossible to install and run, or is it just a message box you have to accept and it'll run anyway?
Completely impossible. Picking apart the apk it seems it lacks the arm64-v8a libraries (x64) and only has armeabi-v7a (x32) ones. When compiling it I think there's a box to make it 64 bits compatible, else it takes the base 32 bits which can still be run by most devices to be fair, but newer ones are dropping 32 bits support. You can also make an universal apk, which is a heavier apk but also compatible with every device
Thank you so much for letting me know, I thought I was already doing an universal APK, and most likely thought 32bit could be ran on 64bit phones as well. Still haven't looked at the project settings, but it should be easy enough to fix as you've said. I release monthly, so next release shouldn't have any issue. I'll reply this thread again once the new version will be available so you can also confirm whether it works or not.