다음을 통해 공유


Android용 .NET 경고 XA4231

예제 메시지

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 클래스 파서 설정 또는 Mac용 Visual Studio .jar 파일 파서 설정을 클래스 구문 분석으로 업데이트합니다. 이 값은 class-parse .csproj 파일의 AndroidClassParser MSBuild 속성 값에 해당합니다.

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