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

Podfile

platform :ios, '8.0'

target 'VisualStudioMobileCenterDemo' do
    pod 'MobileCenter'
end

错误

ios - CocoaPods - 无法找到  `MobileCenter` 的规范-LMLPHP

最佳答案

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

$ pod repo update

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

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

ios - CocoaPods - 无法找到  `MobileCenter` 的规范-LMLPHP
ios - CocoaPods - 无法找到  `MobileCenter` 的规范-LMLPHP

关于ios - CocoaPods - 无法找到 `MobileCenter` 的规范,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40785259/

10-12 03:57