英語で読む

次の方法で共有


Android 用 .NET エラー XA0035

問題点

.NET for Android では、.csproj ファイルで指定されたアプリケーションのターゲット Android ABIsを特定できませんでした。

解決策

Visual Studio または別のテキスト エディタープロジェクト ファイルを開き、RuntimeIdentifiers MSBuild プロパティのすべての値が有効であることを確認します。

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

詳細については、 runtime 識別子 に関する Microsoft のドキュメントを参照してください。

Example messages (メッセージの例)

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.