Aracılığıyla paylaş


.NET for Android warning XA4232

Örnek iletiler

warning XA4232: The Android code generation target 'XamarinAndroid' is deprecated and will be removed in a future version of .NET for Android. Update the project properties to use 'XAJavaInterop1'.

Sorun

The Android code generation target XamarinAndroid has been deprecated.

Çözüm

To resolve this warning, update the Android Codegen target setting in the Visual Studio project property pages or the Code generation target setting in Visual Studio for Mac to XAJavaInterop1. Bu, XAJavaInterop1 dosyasındaki AndroidCodegenTarget MSBuild özelliğinin değerine karşılık gelir:

<PropertyGroup>
  <AndroidCodegenTarget>XAJavaInterop1</AndroidCodegenTarget>
</PropertyGroup>