代码改变世界

警告:Not targeting the latest versions of Android; compatibility modes apply. Consider testing and updating this version. Consult the ...

2013-10-18 08:06  默契.  阅读(2786)  评论(0)    收藏  举报

AndroidManifest.xml中uses-sdk:

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

有警告如下:

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.

 

 

作为一个有代码强迫症的人自然是容不得警告的,谷歌一下找到答案,警告的意思是说targetSdkVersion版本不是最新的,改成最新的就可以了.

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