When I am trying to publish my app on Google play, it is said that my app support tablets so I need to upload the screen shots of the tablets .
BUT I want to make my app for smartphones only. how ?
You can add a supports-screen element in the manifest.
For example:
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="false"
android:xlargeScreens="false"/>