I have a task where I have to find if the application supports for phone or a tablet, that is available on the Google Play Store. I have two ways of accessing the app information:
Using selenium automation to search an app url and get the app information.
pull the apk file and do aapt dump badging <.apk location>
The aapt dumping gives me values of support screens as below:
supports-screens: 'small' 'normal' 'large'
Is this enough to tell if an app is meant for phones or tablets or both?