未定位到最新版本的Android 2.2

时间:2013-01-28 17:00:52

标签: android

  

可能重复:
  Not targeting the latest versions of Android

我尝试在最新的Android SDK Package 4.2上测试主题时收到警告。 这是我的清单文件:

<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>

2 个答案:

答案 0 :(得分:0)

如果可以的话,你可以在最新的Android版本(以及所有旧版本)上测试你的应用程序。并使用此版本作为targetSdkVersion。 You can read here about it.

如果对一切都没问题,也可以忽略此消息。

答案 1 :(得分:0)

可能会说,您不使用最后一个API(API级别17)。

相关问题