Hi,
How do I include stuff into the android manifest file?
I want to restrict app to tablets where screen width greater than 600, example;
<supports-screens android:smallScreens=“false”
android:normalScreens="false"
android:largeScreens="true
android:xlargeScreens="true"
android:requiresSmallestWidthDp=“600” />
How to do??