Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
开发的框架有iOS10的依赖,例如Messages. podspec 包括以下行:
Messages
s.ios.deployment_target = '10.0'
但是在 linting 时会列出以下错误:
ERROR | [iOS] unknown: Encountered an unknown error (Simulator for iOS 10.0 is not available.
目前有什么办法可以解决这个问题吗?
可可豆荚版本 - 1.1.0.beta.2
您应该使用以下命令选择 Xcode8 版本:
sudo xcode-select -switch /Path_to_xcode8/Xcode.app/
否则,Cocoapods 将使用 Xcode7 来确保您的 pod 正在构建,并且由于 Xcode7 不包含 ios10,因此它不会构建。