Предупреждение .NET для Android XA0036
Свойство $(AndroidSupportedAbis)
MSBuild больше не поддерживается в .NET 6 и более поздних версиях.
Откройте файл проекта в Visual Studio или другой текстовый редактор и удалите его <AndroidSupportedAbis/>
. RuntimeIdentifiers
Используйте вместо этого свойство MSBuild:
<PropertyGroup>
<RuntimeIdentifiers>android-arm;android-arm64;android-x86;android-x64</RuntimeIdentifiers>
</PropertyGroup>
Дополнительные сведения см. в документации Майкрософт по идентификаторам среды выполнения.
warning XA0036: The 'AndroidSupportedAbis' MSBuild property is no longer supported. Edit the project file in a text editor, remove any uses of 'AndroidSupportedAbis', and use the 'RuntimeIdentifiers' MSBuild property instead.