警告:Not targeting the latest versions of Android; compatibility modes apply.Consider testing and updating this version. Consult the android.os.Build.VERSION_CODES javadoc for details.
ANDROID SDK 版本是19.
<?xml version="1.0" encoding="utf-8"?><manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.themetest"
android:versionCode="1"
android:versionName="1.0" ><uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="16" /> 问题在这里
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppBaseTheme" ><activity
android:name="com.example.themetest.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></application></manifest>
解决:targetSdkVersion版本不是最新的,改成本地SDK的最新或更新就好了。
本地是19
<uses-sdk
android:minSdkVersion="4"
android:targetSdkVersion="19" /> 或者 <uses-sdk
android:minSdkVersion="4"
android:targetSdkVersion="30" />
参考:http://*.com/questions/13431722/not-targeting-the-latest-versions-of-android