I want my application to work on all Tablets, starting from for example Samsung Galaxy TAb 7 Inch up to any other tablet size.
When I published my app in the google play, It appeared on same handsets such as HTC Sensation XE and Samsung Galaxy S3!, here is my tag in the manifest:
<supports-screens
android:largeScreens="true"
android:normalScreens="false"
android:requiresSmallestWidthDp="600"
android:smallScreens="false"
android:xlargeScreens="true" />
I guess I don't understand exactly what does each child tag corresponds to which sizes excatly. Can anyone help me?