Pod 未在 Pods 文件中列出,但它安装在 pod install 命令上

Pod not listed in Pods file but it installing on pod install command

以下是 pods 文件的截图,不包含 AFNetworking 库。当我在终端中 运行 命令 pod install 时,它安装了 AFNetworking 库版本 3.0.1。我无法理解为什么会这样。

此外,我还检查了Podfile.lock文件。我可以检查此文件中列出的 AFNetworking。请参阅以下屏幕截图:

我不想在我的项目中包含 AFNetworking。

Check .podspec file for all listed pods. It's mentioned .dependency for in pod specification file.

检查您的案例 AFOAuth2Manager pod 规范 AFOAuth2Manager.podspec 他们对 AFNetworking/NSURLSession', '~>3.0'.

的依赖

例子- Check here

如果您列出的任何 pod 依赖于其他 pod,那么它将被安装。 这将在 git 存储库评论中提到。