F Firpas Active Member Licensed User Longtime User Sep 7, 2014 #1 Hi everybody. Anybody know how to limiit an application to install only on Tablet 7" or more??? Thanks in advance
Hi everybody. Anybody know how to limiit an application to install only on Tablet 7" or more??? Thanks in advance
udg Expert Licensed User Longtime User Sep 7, 2014 #2 Configure the Manifest in the appropriate way. Have a look at this explanation An example could be: B4X: <supports-screens android:smallScreens="false" android:normalScreens="false" android:largeScreens="true" android:xlargeScreens="true" android:requiresSmallestWidthDp="600" /> udg Upvote 0
Configure the Manifest in the appropriate way. Have a look at this explanation An example could be: B4X: <supports-screens android:smallScreens="false" android:normalScreens="false" android:largeScreens="true" android:xlargeScreens="true" android:requiresSmallestWidthDp="600" /> udg