您可以直接编辑.csproj并从AndroidSupportedAbis标记中删除armeabi:<AndroidSupportedAbis>armeabi-v7a;arm64-v8a</AndroidSupportedAbis>或者您可以在IDE中打开Android Build设置,它将为您自动更新它: 在Xamarin Android上定位64位架构 I have a Mobile App built with Xamarin.Formswhen I am trying to upgrade my project from VS2017 to VS2019I get this error in Android ProjectI tried to delete bin and obj folders to force the project to rebuild everything, but the error still appearsCan I get an explanation about the error above and how to solve it?Note: the error doesn't appear in VS2017 解决方案 armeabi is deprecated and your Android project should target armeabi-v7a and arm64-v8a at a minimum in your release builds destined for the Play Store.You can directly edit your .csproj and remove the armeabi from within the AndroidSupportedAbis tags:<AndroidSupportedAbis>armeabi-v7a;arm64-v8a</AndroidSupportedAbis>Or you can open the Android Build settings in the IDE and it will auto-update it for you:Targeting 64 bit architectures on Xamarin Android 这篇关于$(AndroidSupportedAbis)中的值'armeabi'无效.不再支持此ABI. Xamarin.Forms-VS2019的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-29 23:26