Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>It says this because of <code>targetSdkVersion="16"</code>. API 16 is Jellybean 4.1 and 4.1.1, while Jellybean 4.2 is API 17. </p> <p>Try using:</p> <pre><code>&lt;uses-sdk android:minSdkVersion="8" android:targetSdkVersion="17" /&gt; </code></pre> <p>Also, keep in mind that this is a Lint warning. These warning exist to help you better your code and make it easy to maintain, while being compatible with the latest Android changes. Ignoring this will not cause you any immediate problems.</p> <p>EDIT: With Android 4.3, the latest SDK version is now 18, so you should use:</p> <pre><code>... android:targetSdkVersion="18" /&gt; </code></pre> <p>EDIT 2: With Android 4.4, the latest SDK version is now 19, so you should use:</p> <pre><code>... android:targetSdkVersion="19" /&gt; </code></pre> <p>EDIT 3: With Android L, you must use the following values, as described <a href="https://developer.android.com/preview/setup-sdk.html#createProject" rel="noreferrer">here</a>:</p> <pre><code>compileSdkVersion="android-L" minSdkVersion="L" targetSdkVersion="L" </code></pre> <p>EDIT 4: With Android L's public release, you must use 21 instead:</p> <pre><code>... android:targetSdkVersion="21" /&gt; </code></pre> <p>20 was used for 4.4W, or for <a href="http://developer.android.com/reference/android/os/Build.VERSION_CODES.html#KITKAT_WATCH" rel="noreferrer">Android Wear</a>.</p> <p>EDIT 5: With Android M's public release, you must use 23 instead:</p> <pre><code>... android:targetSdkVersion="23" /&gt; </code></pre> <p><em>In the future please consult the <a href="https://source.android.com/source/build-numbers.html" rel="noreferrer">official Android documentation</a> to keep yourself up-to-date with the latest Android API Levels.</em></p>
    singulars
    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.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      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