0

我目前正在将 monogodb 添加到我的 ios 项目中。在按照提供的指令stitch mongodb进行操作后,我在pod安装StitchCoreSDK时被卡住了。它应该创建一个 xcworkspace 文件,但它没有。相反,我收到以下消息。 在此处输入图像描述

我创建的 podfile 如下

# Uncomment the next line to define a global platform for your project
platform :ios, '11.4'
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
target 'paotuaniOS' do
  # Comment the next line if you're not using Swift and don't want to use dynamic frameworks

  # Pods for paotuaniOS
  pod 'Nexmo-Stitch'
  pod 'StitchSDK', '~> 4.0.5'
  target 'paotuaniOSTests' do
    inherit! :search_paths
    # Pods for testing
  end

  target 'paotuaniOSUITests' do
    inherit! :search_paths
    # Pods for testing
  end

end

有人可以帮我解决这个问题吗?谢谢!!!

4

1 回答 1

1

我以前有这个问题。回购有问题。回购已更新。请用

pod 'StitchSDK', '~> 4.1.1'
于 2018-11-26T13:58:39.063 回答