Android Google Play "This app is incompatible with all your devices"

Hello everyone,

Something very strange is happening with my app I pushed to Google play.  It shows up when I do a search on the browser, however it says: “This app is incompatible with all your devices”.  On the device (android devices) it won’t even show up when I do a search.  

Now, I have made sure that I have included all devices within the google play developer console and it shows that I have no devices ‘excluded’.  I fact, I have 1510 supported devices. Yet, I still get the “This app is incompatible with all your devices”.  I am using Corona SDK Build: 2014.2162.

Is anyone having the same issues?

Any help is highly appreciated.

Thanks

I think I figured out the issue!  I had

 [sample=’’] android =

{
usesFeatures =
{
  { name = “android.hardware.sensor.gyroscope”, required = true }
}
},[/sample]

Which obviously was excluding all of the devices without gyroscope capabilities.  I have commented out that line of code, and I saw a spike on “supported devices” form around 1512 to a high 4000+!

I hope this helps someone out there going through a similar issue: check your build.settings for “usesFeatures”

I think I figured out the issue!  I had

 [sample=’’] android =

{
usesFeatures =
{
  { name = “android.hardware.sensor.gyroscope”, required = true }
}
},[/sample]

Which obviously was excluding all of the devices without gyroscope capabilities.  I have commented out that line of code, and I saw a spike on “supported devices” form around 1512 to a high 4000+!

I hope this helps someone out there going through a similar issue: check your build.settings for “usesFeatures”