I have developed an app with Expo and react-native for Smartphones - now I am trying to upload the ".aab" file to the Google Play Store - however it seems like it will be available for tablet and wearables, too. I could not really find out how to either code it into the "app.json" or into the code itself, that only a smartphone must be supported.
Furthermore, it should not be possible to even download the app from any other device than a smartphone, cause that would cause bad ux
I tried the device catalogue but could only choose to block by processor or RAM - is there an easy goto solution?
react-native-device-info
isTablet
method to know if there is a tablet at the app start and display a message that the app does not support tablets. – Meandrous