• [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

  • 相关阅读:
    函数
    registry搭建及镜像管理-harbor
    用户输入和while 循环
    dockerfile
    字典,set
    if 语句
    alpine操作
    循环:列表,元组
    列表
    docker跨主机通信-overlay
  • 原文地址:https://www.cnblogs.com/javadu/p/3812509.html
Copyright © 2020-2023  润新知