[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.
<?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,,5-wow.com
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。