如何修复在更新到Visual Studio 2019版本16.7.0之后出现的错误

Anas Alweish |

我有一个使用Xamarin.Forms构建的移动应用程序

之后,我更新的Visual Studio从16.4.416.7.0

这些错误出现了

Assembly 'Xamarin.GooglePlayServices.Maps' is using '[assembly: Java.Interop.JavaLibraryReferenceAttribute]', which is no longer supported. Use a newer version of this NuGet package or notify the library author. MyApp.Android           
Assembly 'Xamarin.Android.Support.v7.CardView' is using '[assembly: Android.IncludeAndroidResourcesFromAttribute]', which is no longer supported. Use a newer version of this NuGet package or notify the library author.   MyApp.Android           
Assembly 'Xamarin.GooglePlayServices.Base' is using '[assembly: Android.IncludeAndroidResourcesFromAttribute]', which is no longer supported. Use a newer version of this NuGet package or notify the library author.   MyApp.Android           
Assembly 'Xamarin.Android.Support.v7.MediaRouter' is using '[assembly: Java.Interop.JavaLibraryReferenceAttribute]', which is no longer supported. Use a newer version of this NuGet package or notify the library author.  MyApp.Android           
Assembly 'Xamarin.Android.Support.Vector.Drawable' is using '[assembly: Java.Interop.JavaLibraryReferenceAttribute]', which is no longer supported. Use a newer version of this NuGet package or notify the library author. MyApp.Android           
Assembly 'Xamarin.Android.Support.Design' is using '[assembly: Android.IncludeAndroidResourcesFromAttribute]', which is no longer supported. Use a newer version of this NuGet package or notify the library author.    MyApp.Android           
Assembly 'Xamarin.GooglePlayServices.Gcm' is using '[assembly: Java.Interop.JavaLibraryReferenceAttribute]', which is no longer supported. Use a newer version of this NuGet package or notify the library author.  MyApp.Android           
Assembly 'Xamarin.Android.Support.v7.AppCompat' is using '[assembly: Java.Interop.JavaLibraryReferenceAttribute]', which is no longer supported. Use a newer version of this NuGet package or notify the library author.    MyApp.Android           
Assembly 'Xamarin.Android.Support.v7.RecyclerView' is using '[assembly: Java.Interop.JavaLibraryReferenceAttribute]', which is no longer supported. Use a newer version of this NuGet package or notify the library author. MyApp.Android           
Assembly 'Xamarin.GooglePlayServices.Basement' is using '[assembly: Android.IncludeAndroidResourcesFromAttribute]', which is no longer supported. Use a newer version of this NuGet package or notify the library author.   MyApp.Android           
Assembly 'Xamarin.Android.Support.Animated.Vector.Drawable' is using '[assembly: Java.Interop.JavaLibraryReferenceAttribute]', which is no longer supported. Use a newer version of this NuGet package or notify the library author.    MyApp.Android           
Assembly 'Xamarin.Android.Support.v7.AppCompat' is using '[assembly: Android.IncludeAndroidResourcesFromAttribute]', which is no longer supported. Use a newer version of this NuGet package or notify the library author.  MyApp.Android           
Assembly 'Xamarin.GooglePlayServices.Maps' is using '[assembly: Android.IncludeAndroidResourcesFromAttribute]', which is no longer supported. Use a newer version of this NuGet package or notify the library author.   MyApp.Android           
Assembly 'Xamarin.Android.Support.v4' is using '[assembly: Java.Interop.JavaLibraryReferenceAttribute]', which is no longer supported. Use a newer version of this NuGet package or notify the library author.  MyApp.Android           
Assembly 'Xamarin.Android.Support.v7.CardView' is using '[assembly: Java.Interop.JavaLibraryReferenceAttribute]', which is no longer supported. Use a newer version of this NuGet package or notify the library author. MyApp.Android           
Assembly 'Xamarin.Android.Support.v4' is using '[assembly: Java.Interop.JavaLibraryReferenceAttribute]', which is no longer supported. Use a newer version of this NuGet package or notify the library author.  MyApp.Android           
Assembly 'Xamarin.GooglePlayServices.Gcm' is using '[assembly: Android.IncludeAndroidResourcesFromAttribute]', which is no longer supported. Use a newer version of this NuGet package or notify the library author.    MyApp.Android           
Assembly 'Xamarin.Android.Support.v7.RecyclerView' is using '[assembly: Android.IncludeAndroidResourcesFromAttribute]', which is no longer supported. Use a newer version of this NuGet package or notify the library author.   MyApp.Android           
Assembly 'Xamarin.Android.Support.Design' is using '[assembly: Java.Interop.JavaLibraryReferenceAttribute]', which is no longer supported. Use a newer version of this NuGet package or notify the library author.  MyApp.Android           
Assembly 'Xamarin.Android.Support.v7.MediaRouter' is using '[assembly: Java.Interop.JavaLibraryReferenceAttribute]', which is no longer supported. Use a newer version of this NuGet package or notify the library author.  MyApp.Android           
Assembly 'Xamarin.Android.Support.Animated.Vector.Drawable' is using '[assembly: Android.IncludeAndroidResourcesFromAttribute]', which is no longer supported. Use a newer version of this NuGet package or notify the library author.  MyApp.Android           
Assembly 'Xamarin.Android.Support.Vector.Drawable' is using '[assembly: Android.IncludeAndroidResourcesFromAttribute]', which is no longer supported. Use a newer version of this NuGet package or notify the library author.   MyApp.Android           
Assembly 'Xamarin.GooglePlayServices.Base' is using '[assembly: Java.Interop.JavaLibraryReferenceAttribute]', which is no longer supported. Use a newer version of this NuGet package or notify the library author. MyApp.Android           
Assembly 'Xamarin.Android.Support.v7.MediaRouter' is using '[assembly: Android.IncludeAndroidResourcesFromAttribute]', which is no longer supported. Use a newer version of this NuGet package or notify the library author.    MyApp.Android           
Assembly 'Xamarin.Android.Support.v4' is using '[assembly: Android.IncludeAndroidResourcesFromAttribute]', which is no longer supported. Use a newer version of this NuGet package or notify the library author.    MyApp.Android           
Assembly 'Xamarin.GooglePlayServices.Basement' is using '[assembly: Java.Interop.JavaLibraryReferenceAttribute]', which is no longer supported. Use a newer version of this NuGet package or notify the library author. MyApp.Android       

我尝试了什么?

1-我试图删除binobj文件夹以强制项目重建所有内容,但错误仍然出现

2-我试图降级到16.4.4并且错误消失了,但是我不想通过这种方式修复它,因为我想使用16.7.0中的这个新功能创建一个新的其他应用程序

那么,有没有办法解决这些错误而不降级到旧版本呢?

笔记:

Xamarin.Forms的版本是2.3

布兰登·明尼克(Brandon Minnick)

Xamarin.Forms的版本是2.3

您需要更新Xamarin.Forms的较新版本,因为Visual Studio 2019不支持v2.3; Xamarin.Forms v2.3于2016发布

我建议使用最新版本的Xamarin.Forms。

本文收集自互联网,转载请注明来源。

如有侵权,请联系[email protected] 删除。

编辑于
0

我来说两句

0条评论
登录后参与评论

相关文章

来自分类Dev

如何将aptana Studio更新到版本3.5?

来自分类Dev

R-Studio的0.98.953版本-启动时控制台中的错误消息

来自分类Dev

将Android.Support Library v7 AppCompat更新到21.0.3版本后出错

来自分类Dev

将Android Studio更新到1.5后出现Gradle错误

来自分类Dev

如何强制gradle使用特定的appcompat-v7版本?

来自分类Dev

从预览更新到.net Core 3.0版本后出现异常

来自分类Dev

Visual Studio 2019更新中断发布(错误的TLS版本)

来自分类Dev

Windows更新到1909后,在VS Studio 2019中构建我的解决方案时出现此错误

来自分类Dev

更新到Android 4.1后出现Android Studio错误

来自分类Dev

更新到Visual Studio 2019 16.8.0后应用清单错误验证错误

来自分类Dev

更新到Visual Studio版本16.8.2后的后锐生成错误

来自分类Dev

更新到Xcode 10.2后如何修复“总线错误10”

来自分类Dev

从Visual Studio 2012中的源代码获取MySQL Connector C ++ 64位版本

来自分类Dev

“ Visual Studio Online”是否为2010版本?

来自分类Dev

将Android Studio更新到版本0.8(测试版)

来自分类Dev

我如何知道升级到Windows 10之前的Windows 7版本

来自分类Dev

如何解决“ Windows 10版本1511更新(KB3122947)-错误0x80070643”

来自分类Dev

如何确定当前已安装的Visual Studio 2013版本/更新?

来自分类Dev

如何判断已安装了哪个PHP 7版本,以及如何将其更新到最新版本?

来自分类Dev

更新到Xcode 7后出现错误

来自分类Dev

Microsoft Visual Studio Community 2015版本缓慢

来自分类Dev

在Visual Studio上将Cordova从3更新到2之后的问题

来自分类Dev

如何修复Nexus 3.0(Milestone 7版本)的init.d脚本

来自分类Dev

Android单击“突出显示”:更新到Android studio 2.2预览版3之后

来自分类Dev

在必需的Intel RST更新之后,更新到Windows 10版本1903仍然失败

来自分类Dev

Visual Studio 2015版本3冻结了在Azure项目中编辑角色

来自分类Dev

更新到php 7后如何修复symfony 1.4错误“空响应头名称,中止请求”

来自分类Dev

当 VS 未显示时,如何将 Visual Studio 2017 更新到最新版本?

来自分类Dev

将 Visual Studio 2017 更新到版本 15.5.2 后出现 Xamarin 错误

Related 相关文章

  1. 1

    如何将aptana Studio更新到版本3.5?

  2. 2

    R-Studio的0.98.953版本-启动时控制台中的错误消息

  3. 3

    将Android.Support Library v7 AppCompat更新到21.0.3版本后出错

  4. 4

    将Android Studio更新到1.5后出现Gradle错误

  5. 5

    如何强制gradle使用特定的appcompat-v7版本?

  6. 6

    从预览更新到.net Core 3.0版本后出现异常

  7. 7

    Visual Studio 2019更新中断发布(错误的TLS版本)

  8. 8

    Windows更新到1909后,在VS Studio 2019中构建我的解决方案时出现此错误

  9. 9

    更新到Android 4.1后出现Android Studio错误

  10. 10

    更新到Visual Studio 2019 16.8.0后应用清单错误验证错误

  11. 11

    更新到Visual Studio版本16.8.2后的后锐生成错误

  12. 12

    更新到Xcode 10.2后如何修复“总线错误10”

  13. 13

    从Visual Studio 2012中的源代码获取MySQL Connector C ++ 64位版本

  14. 14

    “ Visual Studio Online”是否为2010版本?

  15. 15

    将Android Studio更新到版本0.8(测试版)

  16. 16

    我如何知道升级到Windows 10之前的Windows 7版本

  17. 17

    如何解决“ Windows 10版本1511更新(KB3122947)-错误0x80070643”

  18. 18

    如何确定当前已安装的Visual Studio 2013版本/更新?

  19. 19

    如何判断已安装了哪个PHP 7版本,以及如何将其更新到最新版本?

  20. 20

    更新到Xcode 7后出现错误

  21. 21

    Microsoft Visual Studio Community 2015版本缓慢

  22. 22

    在Visual Studio上将Cordova从3更新到2之后的问题

  23. 23

    如何修复Nexus 3.0(Milestone 7版本)的init.d脚本

  24. 24

    Android单击“突出显示”:更新到Android studio 2.2预览版3之后

  25. 25

    在必需的Intel RST更新之后,更新到Windows 10版本1903仍然失败

  26. 26

    Visual Studio 2015版本3冻结了在Azure项目中编辑角色

  27. 27

    更新到php 7后如何修复symfony 1.4错误“空响应头名称,中止请求”

  28. 28

    当 VS 未显示时,如何将 Visual Studio 2017 更新到最新版本?

  29. 29

    将 Visual Studio 2017 更新到版本 15.5.2 后出现 Xamarin 错误

热门标签

归档