What would be the best way to filter out Android devices, so that I’m limiting support/availability to Galaxy S3 and similar caliber devices only?
I tried the following in the build.settings, but I have over 1400 devices showing up including Galaxy S (1)! How can this be?
android = {
usesPermissions = {
“android.permission.INTERNET”,
“com.android.vending.CHECK_LICENSE”,
“com.android.vending.BILLING”,
},
supportsScreens =
{
smallScreens = false,
normalScreens = true,
largeScreens = true,
xlargeScreens = true,
requiresSmallestWidthDp = 600,
},
usesFeatures =
{
{ name = “android.hardware.sensor.gyroscope”, required = true },
},
},