9

我正在尝试通过 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 项目中运行良好。

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

4

3 回答 3

3

使用 Microsoft 解决问题。

清理您的解决方案并再次重建。

于 2016-11-25T12:21:07.080 回答
3

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

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

于 2016-11-29T19:33:01.277 回答
2

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

右键单击组件文件夹:

右键单击组件文件夹

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

搜索并选择 Xamarin.Mobile

它可能会起作用!

于 2016-11-30T11:41:14.910 回答