0

Possible Duplicate:
Not targeting the latest versions of Android

I have a warning when trying to test theme on latest Android SDK Package 4.2. Here is my manifest file:

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="8" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.thepikopaper.sdd.MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
     <activity
        android:name=".PlayButton"
        android:label="@string/app_name" >  
            <action android:name="com.thepikopaper.sdd.PLAYBUTTON" />
            <category android:name="android.intent.category.DEFAULT" />
    </activity>
Community
  • 1
  • 1
smelbad
  • 11
  • 3

2 Answers2

0

If you can you should test your app on the latest android version you can find (and all older versions). And use this version as targetSdkVersion. You can read here about it.

You also can ignore this message if you are OK with everything.

Leonidos
  • 10,482
  • 2
  • 28
  • 37
0

It ,may be, says that you don't use last API (API Level 17).

Gabriele Mariotti
  • 320,139
  • 94
  • 887
  • 841