Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>The problem may be with the <code>&lt;supports-screen&gt;</code> tag in the Manifest. </p> <p>Read the descriptions for the attributes in tag <a href="http://developer.android.com/guide/topics/manifest/supports-screens-element.html#large" rel="nofollow">here</a> especially the screen supporting attributes. For those attributes like <a href="http://developer.android.com/guide/topics/manifest/supports-screens-element.html#small" rel="nofollow"><code>android:smallscreens</code></a>,<a href="http://developer.android.com/guide/topics/manifest/supports-screens-element.html#normal" rel="nofollow"><code>android:normalscreens</code></a> the default value is <strong>true</strong> as expected. </p> <p>But for attributes like <a href="http://developer.android.com/guide/topics/manifest/supports-screens-element.html#large" rel="nofollow"><code>android:largescreens</code></a> and <a href="http://developer.android.com/guide/topics/manifest/supports-screens-element.html#xlarge" rel="nofollow"><code>android:xlargescreens</code></a>, the default values varies.</p> <blockquote> <p>The default value for this actually varies between some versions, so it's better if you explicitly declare this attribute at all times.</p> </blockquote> <p>As your specified devices are tablets having large screens, stating <code>&lt;support-screen&gt;</code> tag may trigger in as not compatible for your app in these devices.</p> <p>So either you give all the necessary attribues or remove the <code>&lt;support-screens&gt;</code> tag. It is not a required field to be given.</p> <p><strong>Note:</strong></p> <ul> <li>If you are giving <code>&lt;support-screen&gt;</code> tag, remove the <a href="http://developer.android.com/guide/topics/manifest/supports-screens-element.html#resizeable" rel="nofollow"><code>android:resizable</code></a> attribute. Its deprecated.</li> <li>Remove the <code>android:required="false"</code> from <code>&lt;uses-permission&gt;</code>. It'll not work.</li> </ul>
 

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