使用英语阅读

通过


适用于 Android 的 .NET 错误 XA0035

问题

.NET for Android 无法确定文件指定的应用程序的目标 Android ABIs.csproj

解决方案

在 Visual Studio 或其他文本编辑器中打开项目文件,并确保 MSBuild 属性中的所有RuntimeIdentifiers值都有效:

<PropertyGroup>
  <RuntimeIdentifiers>android-arm;android-arm64;android-x86;android-x64</RuntimeIdentifiers>
</PropertyGroup>

有关详细信息,请参阅有关运行时标识符的Microsoft文档

示例消息

error XA0035: Unable to determine the Android ABI from the value 'XYZ'. Edit the project file in a text editor and set the 'RuntimeIdentifiers' MSBuild property to contain only valid identifiers for the Android platform.