适用于 Android 的 .NET 错误 XA4216

示例消息

error XA4216: The deployment target '19' is not supported (the minimum is '21'). Please increase the $(SupportedOSPlatformVersion) property value in your project file.
error XA4216: The deployment target '19' is not supported (the minimum is '21'). Please increase (or remove) the //uses-sdk/@android:minSdkVersion value in your AndroidManifest.xml.
warning XA4216: AndroidManifest.xml //uses-sdk/@android:targetSdkVersion '19' is less than API-21, this configuration is not supported.

问题

此错误或警告表明你的应用程序正在面向不受支持的 API 级别。

解决方案

编辑 csproj 并将“$(SupportedOSPlatformVersion)”属性值提高到大于或等于最低支持版本的内容。

编辑 AndroidManifest.xml 并删除 //uses-sdk/@android:minSdkVersion,或将其增加到大于或等于支持的最低版本。

编辑 AndroidManifest.xml 并删除 //uses-sdk/@android:targetSdkVersion,或将其增加到大于或等于支持的最低版本。