I recently got a report from a customer who tells me that our product (Puzzingo) all of a sudden can’t be found in Google Play via his android device. He did some more digging for us. (The customer happens to work for a smaller android tablet maker and had access to beta devices).
It appears that the source of the problem is that this company’s tablet is intended to only be used in landscape mode. And when they put a “landscape lock” on it, then our app disappears from the list of available apps. It seems the problem is that Corona SDK requires that the Android tablets support portrait mode, even though our app only requires and support landscape made.
I did some digging around and it does appear to be the case. Attached screenshot from Google Play shows that our Corona App requires the portrait mode, but our build.settings clearly does not require it:
orientation =
{
default = “landscapeRight”,
– content = “landscapeRight”, – this locks the orientation
supported =
{
– “landscapeLeft”, “landscapeRight”, “portrait”, “portraitUpsideDown”,
“landscapeLeft”, “landscapeRight”
},
},
Can someone tell me if I am understanding this correctly? Also, is there a way for us to configure around this issue? I don’t know how many landscape-only devices are out there, but we definitely want to make sure we work across all devices possible!
Thanks,
Andrew
Many thanks!