This Cordova plugin lets you configure the supported screen sizes on Android devices.
cordova plugin add https://github.com/maxcarl/cordova-plugin-android-screens.git
After installing you can customize the plugin.xml to fit your needs:
<supports-screens android:smallScreens="false" />
This example prevents the app to be used on "small" screens.
<supports-screens android:normalScreens="false" />
This example prevents the app to be used on "normal" and smaller screens.
Applies to Android only.