英語で読む

次の方法で共有


Android 用 .NET 警告 XA4231

Example messages (メッセージの例)

warning XA4231: The Android class parser value 'jar2xml' is deprecated and will be removed in a future version of .NET for Android. Update the project properties to use 'class-parse'.

問題点

Android クラス パーサー jar2xml は非推奨になりました。

解決策

この警告を解決するには、Visual Studio プロジェクトのプロパティ ページの Android クラス パーサー 設定、または Visual Studio for Mac の .jar ファイル パーサー 設定を class-parse に更新します。 これは、.csproj ファイル内のAndroidClassParser MSBuild プロパティのclass-parse値に対応します。

<PropertyGroup>
  <AndroidClassParser>class-parse</AndroidClassParser>
</PropertyGroup>