Hello to all.
Also I have a similar problem with my app.
Initially, the app could not be downloaded with the tablet in the market.
After I changed the AndroidManifest.xml file, I was able to download my app with the tablet market.
The only problem left is that my app is not included within the app "Designed for the tablet."
So, with the tablet the app can be downloaded only if sought by name.
The Developer Console provides the following message: "In your layout, You Should use the available space on the tablet."
How can I make sure that my app is included in the app "Designed for tablet"?
If this may help, my app is as follows:
https://play.google.com/store/apps/details?id=it.gianest.software.assegnigoldfree&hl=en
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="it.gianest.software.assegnigoldfree"
android:versionCode="8"
android:versionName="2.0.19"
android:installLocation="internalOnly">
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="14"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>
<uses-feature android:name="android.hardware.telephony" android:required="false" />
<uses-feature android:name="android.hardware.camera" android:required="false" />
<uses-permission android:name="android.permission.CALL_PHONE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.VIBRATE"/>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<application
android:icon="@drawable/icon"
android:label="@string/app_name_free">
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version"/>
<activity android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
<activity
android:windowSoftInputMode="stateHidden"
android:launchMode="singleTop"
android:name=".main"
android:label="@string/app_name_free"
android:screenOrientation="unspecified">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:windowSoftInputMode="adjustResize|stateHidden"
android:launchMode="singleTop"
android:name=".banca"
android:label="@string/app_name_free"
android:screenOrientation="unspecified">
</activity>
<activity
android:windowSoftInputMode="adjustResize|stateHidden"
android:launchMode="singleTop"
android:name=".contocorrente"
android:label="@string/app_name_free"
android:screenOrientation="unspecified">
</activity>
<activity
android:windowSoftInputMode="adjustResize|stateHidden"
android:launchMode="singleTop"
android:name=".anagrafica"
android:label="@string/app_name_free"
android:screenOrientation="unspecified">
</activity>
<activity
android:windowSoftInputMode="adjustResize|stateHidden"
android:launchMode="singleTop"
android:name=".assegnoemesso"
android:label="@string/app_name_free"
android:screenOrientation="unspecified">
</activity>
<activity
android:windowSoftInputMode="adjustResize|stateHidden"
android:launchMode="singleTop"
android:name=".assegnoricevuto"
android:label="@string/app_name_free"
android:screenOrientation="unspecified">
</activity>
<activity
android:windowSoftInputMode="stateHidden"
android:launchMode="singleTop"
android:name=".gs_viewimage"
android:label="@string/app_name_free"
android:screenOrientation="unspecified">
</activity>
<activity
android:windowSoftInputMode="adjustResize|stateHidden"
android:launchMode="singleTop"
android:name=".ricercaassegniemessi"
android:label="@string/app_name_free"
android:screenOrientation="unspecified">
</activity>
<activity
android:windowSoftInputMode="adjustResize|stateHidden"
android:launchMode="singleTop"
android:name=".ricercaassegniricevuti"
android:label="@string/app_name_free"
android:screenOrientation="unspecified">
</activity>
<activity
android:windowSoftInputMode="adjustResize|stateHidden"
android:launchMode="singleTop"
android:name=".esportaassegniemessi"
android:label="@string/app_name_free"
android:screenOrientation="unspecified">
</activity>
<activity
android:windowSoftInputMode="adjustResize|stateHidden"
android:launchMode="singleTop"
android:name=".esportaassegniricevuti"
android:label="@string/app_name_free"
android:screenOrientation="unspecified">
</activity>
<service android:name=".notifiche">
</service>
<receiver android:name=".notifiche$notifiche_BR">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
</application>
</manifest>
I attach also the manifest file.
Sorry for my English.