4

无法使用 CocoaPods 添加 MobileCenter。CocoaPods 无法找到 MobileCenter 的规范。

播客文件

platform :ios, '8.0'

target 'VisualStudioMobileCenterDemo' do
    pod 'MobileCenter'
end

错误

在此处输入图像描述

4

1 回答 1

14

如果您使用 Cocoapods 在您的应用程序中安装 Mobile Center 并遇到错误消息 - 无法找到 MobileCenter 的规范,请运行

$ pod repo update

在您的终端中。它将为您同步最新的 podspec 文件。然后尝试

$ pod install

它应该在您的应用程序中安装 Mobile Center 模块。

在此处输入图像描述 在此处输入图像描述

于 2016-11-24T11:28:56.393 回答