Note that there are some explanatory texts on larger screens.

plurals
  1. POAndroid app is incompatible with your device
    primarykey
    data
    text
    <p>I have published an app in google play but i can't make it compatible with tablets. How can I fix this problem</p> <p>here is my manifest file </p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;manifest xmlns:android="http://schemas.android.com/apk/res/android" package="packageName" android:installLocation="auto" android:versionCode="3" android:versionName="0.1.3" &gt; &lt;uses-sdk android:minSdkVersion="9" android:targetSdkVersion="17" /&gt; &lt;supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" android:xlargeScreens="true" /&gt; &lt;compatible-screens&gt; &lt;screen android:screenSize="large" android:screenDensity="480" /&gt; &lt;screen android:screenSize="xlarge" android:screenDensity="480" /&gt; &lt;!--all small size screens --&gt; &lt;screen android:screenSize="small" android:screenDensity="ldpi"/&gt; &lt;screen android:screenSize="small" android:screenDensity="mdpi"/&gt; &lt;screen android:screenSize="small" android:screenDensity="hdpi"/&gt; &lt;screen android:screenSize="small" android:screenDensity="xhdpi"/&gt; &lt;!--all normal size screens --&gt; &lt;screen android:screenSize="normal" android:screenDensity="ldpi"/&gt; &lt;screen android:screenSize="normal" android:screenDensity="mdpi"/&gt; &lt;screen android:screenSize="normal" android:screenDensity="hdpi"/&gt; &lt;screen android:screenSize="normal" android:screenDensity="xhdpi"/&gt; &lt;!-- all large size screens --&gt; &lt;screen android:screenSize="large" android:screenDensity="ldpi"/&gt; &lt;screen android:screenSize="large" android:screenDensity="mdpi"/&gt; &lt;screen android:screenSize="large" android:screenDensity="hdpi"/&gt; &lt;screen android:screenSize="large" android:screenDensity="xhdpi"/&gt; &lt;!-- all xlarge size screens --&gt; &lt;screen android:screenSize="xlarge" android:screenDensity="ldpi"/&gt; &lt;screen android:screenSize="xlarge" android:screenDensity="mdpi"/&gt; &lt;screen android:screenSize="xlarge" android:screenDensity="hdpi"/&gt; &lt;screen android:screenSize="xlarge" android:screenDensity="xhdpi"/&gt; &lt;!-- Special case for Nexus 7 --&gt; &lt;screen android:screenSize="large" android:screenDensity="213" /&gt; &lt;/compatible-screens&gt; &lt;uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /&gt; &lt;uses-permission android:name="android.permission.INTERNET" /&gt; &lt;uses-permission android:name="android.permission.CALL_PHONE" /&gt; &lt;uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /&gt; &lt;uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/&gt; &lt;application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" &gt; &lt;activity android:name="CompanyActivity" android:configChanges="orientation" android:label="@string/app_name" android:screenOrientation="sensorPortait" android:windowSoftInputMode="adjustPan" &gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.MAIN" /&gt; &lt;category android:name="android.intent.category.LAUNCHER" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;activity android:name="LoginActivity" android:configChanges="orientation" android:screenOrientation="sensorPortait" android:windowSoftInputMode="adjustPan" &gt; &lt;/activity&gt; &lt;/application&gt; </code></pre> <p></p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload