为什么这个 iOS 项目不使用 XCode 11 构建?

Why doesn't this iOS project build using XCode 11?

我有一个 iphone 应用程序(Swift 项目)曾经使用 XCode 的旧版本构建,但我已经一年没有构建它了(我更新了我的 XCode),现在我无法构建它。谷歌搜索问题后,我尝试了所有发现的内容。每次我尝试构建它时都会收到此错误:

unable to spawn process (No such file or directory) (in target 'CombineDataSources' from project 'Pods')

当我尝试构建项目时,我没有收到任何其他错误,只有这个错误。 我尝试清理构建文件夹,删除所有 pods (Library/Cashes/CocoaPods/Pods),删除派生数据 (Library/Developer/XCode/DerivedData),删除 xcworkspace 文件,然后在终端中执行 运行 pod deintegrate 命令,然后 运行 在终端中执行 pod install 命令。

Analyzing dependencies
Downloading dependencies
Installing CombineDataSources (0.2.2)
...
Generating Pods project
Integrating client project
Pod installation complete! There are 14 dependencies from the Podfile and 20 total pods installed.

Podfile(包含作为 Xcode 错误一部分的包的部分):

pod 'CombineDataSources', '~> 0.2.2'

Podfile.lock(包含属于 Xcode 错误的包的部分):

PODS:
- CombineDataSources (0.2.2)

DEPENDENCIES:
- CombineDataSources (~> 0.2.2)

SPEC REPOS:
trunk:
- CombineDataSources

SPEC CHECKSUMS:
CombineDataSources: 2315365365i8746865375

所有pods都安装成功,没有错误,没有警告,但我的项目仍然出现无法生成进程的错误。任何人都知道我还能尝试什么?任何帮助,任何建议将不胜感激!

我无法在 CombineDataSources 和规范存储库中找到规范 0.2.2;

0.2.2 版本似乎不包含 podspec。

未找到回购:https://github.com/CombineCommunity/CombineDataSources/tree/0.2.2

在 cocoapod 规范中未找到: https://github.com/CocoaPods/Specs/search?q=combinedatasources&unscoped_q=combinedatasources

只有最新版本似乎包含 podspec。 (0.2.5)

你能试试 pod installbundle exec pod install 那个版本吗?