码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2014-07-09 23:56:40      阅读:431      评论:0      收藏:0      [点我收藏+]

标签:android   des   style   blog   http   java   

警告:
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://stackoverflow.com/questions/13431722/not-targeting-the-latest-versions-of-android

[android警告]AndroidManifest.xml警告 Not targeting the latest versions of Android,布布扣,bubuko.com

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

标签:android   des   style   blog   http   java   

原文地址:http://www.cnblogs.com/javadu/p/3812509.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!