首页 > 解决方案 > pod install 还会创建 2. 3. 文件

问题描述

我有一个使用 CocoaPods 的 iOS 项目。我已经调用了 pod install 并且我看到添加到项目中的未跟踪文件:2.、3. 它始终是那些文件(即 2.、3.)。请参阅附件

在此处输入图像描述

吊舱文件:

# Uncomment this line to define a global platform for your project
platform :ios, '8.0'
use_frameworks!
inhibit_all_warnings!

# Pods for All

def general_pods
 pod "Branch", '~> 0.21.11'
 pod 'FBSDKCoreKit', '~> 4.28.0'
 pod 'FBSDKLoginKit', '~> 4.28.0'
 pod 'IGListKit', '~> 3.0'
 pod 'OpenTok', '2.12.0'

 pod 'Firebase/Storage'
 pod 'Firebase/Auth'
 pod 'Firebase/Database'
 pod 'Firebase/Messaging'

 pod 'JSQMessagesViewController'

end

target 'MyApp' do
 general_pods
end

你如何阻止它发生?

标签: gitcocoapods

解决方案


推荐阅读