The solution is to edit the android manifest like this:
<application
android:icon="@drawable/icon"
android:label="@string/app_name" >
<activity
android:name=".AppName"
android:configChanges="orientation|keyboardHidden|screenSize"
android:label="@string/app_name"
android:launchMode="singleTask"
android:screenOrientation="unspecified"
android:theme="@android:style/Theme.Translucent.NoTitleBar" >
with unspecified android select the proper orientation for device.
es. smartphone is portrait only, but tablet is portrait and landscape