I tried to restrict my app to mobile phone only. I added the following setting into my build.settings and try to filter out tablet from the list. But I still see a lot tablet device in the list. Am I doing anything wrong? or I should even disable the normal screen as well?
supportsScreens =
{
resizeable = false,
smallScreens = true,
normalScreens = true,
largeScreens = false,
xlargeScreens = false,
},
I found there is an android setting " requiresSmallestWidthDp". How can I use this in build.setting?