My ionic mobile app is adjusting perfect in mobile but as per the UI design not looking good on tablet so can we restrict to download it on tablet.
I dont allow user to download it on tablet.
My ionic mobile app is adjusting perfect in mobile but as per the UI design not looking good on tablet so can we restrict to download it on tablet.
I dont allow user to download it on tablet.
Yup you can. For android, you need to modify your manifest file
<supports-screens
android:largeScreens="true"
android:normalScreens="false"
android:requiresSmallestWidthDp="600"
android:smallScreens="false"
android:xlargeScreens="true" />
And for ios, you can set this in xcode