
Unlike iPads, there doesn't seem to be a setting for "Tablets only" in the 'Standalone Applications Settings" for Android devices. Apparently I can change the manifest to select device sizes (as shown below), but I'm not sure how to do this once the standalone is built. I tried playing around with it in Android Studio but no luck. I hope I'm just missing something simple

<supports-screens
android:largeScreens="true"
android:normalScreens="false"
android:requiresSmallestWidthDp="600"
android:smallScreens="false"
android:xlargeScreens="true" />
thanks for any suggestions.
Richard