我在 AppCenter 上的自动 iOS 构建失败并出现以下错误(片段):
ViewController.swift:10:8: error: no such module 'MBCircularProgressBar'
import MBCircularProgressBar
^
但我不知道问题可能是什么。我正在使用 CocoaPods 导入该框架。
我的Podfile
样子是这样的(删除了所有其他的豆荚):
target 'MyApp' do
use_frameworks!
pod 'MBCircularProgressBar'
end
我有一个appcenter-post-clone.sh
可在 AppCenter 中识别的 Post Clone 脚本,其中包含:
#!/usr/bin/env bash
pod repo update
pod install
编辑:在要编译的文件列表中向下移动有问题的文件后,我得到另一个 CocoaPod 的相同错误。所以在我看来,没有发现 CocoaPods
这里出了什么问题?