Note that there are some explanatory texts on larger screens.

plurals
  1. PO<compatible-screens> for galaxy note
    primarykey
    data
    text
    <p>I developed an application for galaxy note which uses the S pen. I would like to make it available only for galaxy note. my understanding is that the galaxy note has a large, xhdpi screen.</p> <p>I added this in my androidmanifest.xml :</p> <pre><code>&lt;compatible-screens&gt; &lt;screen android:screenSize="large" android:screenDensity="xhdpi"/&gt; &lt;/compatible-screens&gt; </code></pre> <p>but when I publish it, the gt-n7000 (galaxy note) appears as incompatible because of my manifest. I tried some other combinations of compatible-screens but it still shows the galaxy note as incompatible.</p> <p>in fact I even tried this (minsdkversion=3 and all screens compatibles) and the note is still marked incompatible... :</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.testnote.testnote" android:versionCode="10012" android:versionName="1.0.12"&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.READ_PHONE_STATE"/&gt; &lt;uses-sdk android:minSdkVersion="3" android:targetSdkVersion="9"/&gt; &lt;compatible-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;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;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;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;/compatible-screens&gt; &lt;application android:label="@string/app_name" android:icon="@drawable/icon"&gt; &lt;activity android:name="testtest" android:label="@string/app_name"&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;/application&gt; &lt;/manifest&gt; </code></pre> <p>removing the screen filter makes the galaxy note compatible but I just can't remove all devices one by one...</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