【发布时间】:2017-10-02 02:39:11
【问题描述】:
我正在我的 Xamarin Forms Android 应用上实现推送通知,目前正在安装所需的 NuGet 包。
但是,我遇到了包冲突问题:Xamarin Google Play Services (GCM) 版本 42.1001.0 和 Xamarin Forms 版本 25.1.0 无法安装在同一个项目上,这似乎是由于依赖关系。
我从 Xamarin 论坛 https://forums.xamarin.com/discussion/57283/unable-to-find-a-version-of-xf-compatible-with 读到,这些包需要它们的依赖项的确切版本,这是不幸的,因为存在一些重叠的依赖包。
有没有办法解决这个问题?
安装 Xamarin Forms 和 Google Play 服务时的安装日志:
Attempting to resolve dependency 'Xamarin.GooglePlayServices.Base (= 42.1001.0)'.
Attempting to resolve dependency 'Xamarin.GooglePlayServices.Basement (= 42.1001.0)'.
Attempting to resolve dependency 'Xamarin.Build.Download (≥ 0.4.2)'.
Attempting to resolve dependency 'Xamarin.Android.Support.v4 (≥ 25.1.0)'.
Attempting to resolve dependency 'Xamarin.Android.Support.Compat (= 25.1.0)'.
Attempting to resolve dependency 'Xamarin.Android.Support.Core.UI (= 25.1.0)'.
Attempting to resolve dependency 'Xamarin.Android.Support.Core.Utils (= 25.1.0)'.
Attempting to resolve dependency 'Xamarin.Android.Support.Fragment (= 25.1.0)'.
Attempting to resolve dependency 'Xamarin.Android.Support.Media.Compat (= 25.1.0)'.
Attempting to resolve dependency 'Xamarin.GooglePlayServices.Tasks (= 42.1001.0)'.
Attempting to resolve dependency 'Xamarin.GooglePlayServices.Iid (= 42.1001.0)'.
Installing 'Xamarin.Build.Download 0.4.2'.
Successfully installed 'Xamarin.Build.Download 0.4.2'.
Installing 'Xamarin.Android.Support.Compat 25.1.0'.
Successfully installed 'Xamarin.Android.Support.Compat 25.1.0'.
Installing 'Xamarin.Android.Support.Core.UI 25.1.0'.
Successfully installed 'Xamarin.Android.Support.Core.UI 25.1.0'.
Installing 'Xamarin.Android.Support.Core.Utils 25.1.0'.
Successfully installed 'Xamarin.Android.Support.Core.Utils 25.1.0'.
Installing 'Xamarin.Android.Support.Media.Compat 25.1.0'.
Successfully installed 'Xamarin.Android.Support.Media.Compat 25.1.0'.
Installing 'Xamarin.Android.Support.Fragment 25.1.0'.
Successfully installed 'Xamarin.Android.Support.Fragment 25.1.0'.
Installing 'Xamarin.Android.Support.v4 25.1.0'.
Successfully installed 'Xamarin.Android.Support.v4 25.1.0'.
Installing 'Xamarin.GooglePlayServices.Basement 42.1001.0'.
Successfully installed 'Xamarin.GooglePlayServices.Basement 42.1001.0'.
Installing 'Xamarin.GooglePlayServices.Tasks 42.1001.0'.
Successfully installed 'Xamarin.GooglePlayServices.Tasks 42.1001.0'.
Installing 'Xamarin.GooglePlayServices.Base 42.1001.0'.
Successfully installed 'Xamarin.GooglePlayServices.Base 42.1001.0'.
Installing 'Xamarin.GooglePlayServices.Iid 42.1001.0'.
Successfully installed 'Xamarin.GooglePlayServices.Iid 42.1001.0'.
Installing 'Xamarin.GooglePlayServices.Gcm 42.1001.0'.
Successfully installed 'Xamarin.GooglePlayServices.Gcm 42.1001.0'.
Install failed. Rolling back...
Updating 'Xamarin.Android.Support.v4 23.3.0' to 'Xamarin.Android.Support.v4 25.1.0' failed. Unable to find versions of 'Xamarin.Android.Support.Animated.Vector.Drawable, Xamarin.Android.Support.Vector.Drawable, Xamarin.Android.Support.v7.AppCompat, Xamarin.Android.Support.v7.RecyclerView, Xamarin.Android.Support.Design, Xamarin.Android.Support.v7.MediaRouter' that are compatible with 'Xamarin.Android.Support.v4 25.1.0'
Google Play 服务时的安装日志然后 Xamarin Forms:
Attempting to resolve dependency 'Xamarin.Android.Support.v4 (≥ 23.3.0)'.
Attempting to resolve dependency 'Xamarin.Build.Download (≥ 0.4.2)'.
Attempting to resolve dependency 'Xamarin.Android.Support.Compat (= 25.1.0)'.
Attempting to resolve dependency 'Xamarin.Android.Support.Core.UI (= 25.1.0)'.
Attempting to resolve dependency 'Xamarin.Android.Support.Core.Utils (= 25.1.0)'.
Attempting to resolve dependency 'Xamarin.Android.Support.Fragment (= 25.1.0)'.
Attempting to resolve dependency 'Xamarin.Android.Support.Media.Compat (= 25.1.0)'.
Attempting to resolve dependency 'Xamarin.Android.Support.Design (≥ 23.3.0)'.
Attempting to resolve dependency 'Xamarin.Android.Support.v7.AppCompat (= 23.3.0)'.
Attempting to resolve dependency 'Xamarin.Android.Support.v4 (= 23.3.0)'.
Already referencing a newer version of 'Xamarin.Android.Support.v4'.
附:这是我的第一个问题帖子,所以如果我需要更多解释或细节,请告诉我。 :)
【问题讨论】:
-
您的目标是什么
Xamarin.Android框架版本? -
编译(目标框架)设置为
Use Latest Platform (Android 7.1 (Nougat)),目标Android版本设置为Use Compile using SDK version -
您使用的是哪个
Xamarin.Forms版本? -
版本 2.3.4.224(刚刚意识到问题的版本号完全错误,对此感到抱歉)
-
我正在尝试安装
Xamarin Google Play Services - GCM版本 42.1001.0
标签: xamarin xamarin.android xamarin.forms google-cloud-messaging nuget