閱讀英文

共用方式為


適用於 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.