[android警告]AndroidManifest.xml警告 Not targeting the latest versions of Android

警告:
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.html


<?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的最新或更新就行了。java

本地是19android


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

或者

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

 參考:http://stackoverflow.com/questions/13431722/not-targeting-the-latest-versions-of-android app


來源:http://www.cnblogs.com/javadu/p/3812509.htmlide



相關文章
相關標籤/搜索