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>