閱讀英文

共用方式為


適用於 Android 的 .NET 警告 XA4232

範例訊息

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'.

問題

Android 程式代碼產生目標 XamarinAndroid 已被取代。

解決方案

若要解決此警告,請將 Visual Studio專案屬性頁中的Android Codegen目標 設定或 Visual Studio for Mac 中的Code產生目標 設定更新為 XAJavaInterop1。 這會對應至 XAJavaInterop1 .csproj 檔案中 MSBuild 屬性的值AndroidCodegenTarget

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