无法在 PCL iOS 项目中安装 Xamarin.Mobile

Posted

技术标签:

【中文标题】无法在 PCL iOS 项目中安装 Xamarin.Mobile【英文标题】:Could not install Xamarin.Mobile in PCL iOS Project 【发布时间】:2016-11-25 11:27:50 【问题描述】:

我正在尝试通过 NuGet 在 PCL ios 项目中安装 Xamarin.Mobile,但出现此错误!

无法安装软件包“xamstore-xamarin.mobile 0.7.1”。你是 试图将这个包安装到一个目标项目中 'Xamarin.iOS,Version=v1.0',但包不包含任何 与之兼容的程序集引用或内容文件 框架。如需更多信息,请联系包作者。

这是我的 AppDelegate

// The UIApplicationDelegate for the application. This class is responsible for launching the 
// User Interface of the application, as well as listening (and optionally responding) to 
// application events from iOS.
[Register("AppDelegate")]
public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate

    //
    // This method is invoked when the application has loaded and is ready to run. In this 
    // method you should instantiate the window, load the UI into it and then make the window
    // visible.
    //
    // You have 17 seconds to return from this method, or iOS will terminate your application.
    //
    public override bool FinishedLaunching(UIApplication app, NSDictionary options)
    
        global::Xamarin.Forms.Forms.Init();
        Xamarin.FormsMaps.Init();
        LoadApplication(new App());

        return base.FinishedLaunching(app, options);
    

我的 SDK 版本是 10.1。

Xamarin.Mobile 在 android 项目中运行良好。

知道如何解决这个问题吗?

【问题讨论】:

【参考方案1】:

使用 Microsoft 解决问题。

清理您的解决方案并重新构建。

【讨论】:

这不是解决方案!!还是一样的问题【参考方案2】:

Xamarin.Mobile NuGet 包与 PCL 不兼容,因此出现错误。此 DLL 旨在安装到 iOS/Android/Windows 应用程序项目中。没有供 PCL 使用的跨平台 API。

您可以将其与共享库一起使用。或者,您需要在每个平台项目中工作。

【讨论】:

我已经将 Xamarin.Mobile 安装到 iOs 项目中。我已经为 iOS 和 Android 实现了,但在 iOs 中我无法添加它。【参考方案3】:

您可以尝试将 Xamarin.Mobile 添加为组件,而不是使用 NuGet 添加 Xamarin.Mobile 包。

右键单击组件文件夹:

在 Xamarin 组件窗口中搜索并选择 Xamarin.Mobile

它可能会起作用!

【讨论】:

以上是关于无法在 PCL iOS 项目中安装 Xamarin.Mobile的主要内容,如果未能解决你的问题,请参考以下文章

来自 PCL 的 Xamarin WebAPI 调用

关于在我的电脑中安装 PCL 的问题

是否可以在 Xamarin iOS/Android 中使用定义 PCL 的 RESX 文件来支持多语言?

记录archlinux中安装pcl的大致流程

Xamarin.iOS 无法在推送通知中显示照片

无法在 Xamarin Forms 中启动 UWP 项目