Facebook 似乎随机出现在我的项目中

Facebook seems to randomly have appeared in my project

我注意到我在日志中得到以下信息。 它们属于哪个 pod?

: Please set a value for FacebookAutoLogAppEventsEnabled. Set the flag to TRUE if you want to collect app install, app launch and in-app purchase events automatically. To request user consent before collecting data, set the flag value to FALSE, then change to TRUE once user consent is received. Learn more: https://developers.facebook.com/docs/app-events/getting-started-app-events-ios#disable-auto-events.

: You haven't set a value for FacebookAdvertiserIDCollectionEnabled. Set the flag to TRUE if you want to collect Advertiser ID for better advertising and analytics results. To request user consent before collecting data, set the flag value to FALSE, then change to TRUE once user consent is received. Learn more: https://developers.facebook.com/docs/app-events/getting-started-app-events-ios#disable-auto-events.

这是我的 pods:

pod 'Firebase'
pod 'Firebase/Firestore'
pod 'Firebase/Storage'
pod 'Firebase/Core'
pod 'Firebase/Auth'
pod 'Firebase/Database'
pod 'FirebaseUI'
pod 'SDWebImage'
pod 'Mapbox-iOS-SDK', '~> 4.9'
pod 'Firebase/Analytics'
pod 'Firebase/Messaging'
pod 'Nuke', '~> 7.0'

我没能找到它属于哪一个(如果有的话)。 如何删除它们?

在我的 pod 文件夹中,我在这里看到它们:

Facebook SDK 是 dependency of FirebaseUI。您可以选择 FirebaseUI 的特定子规范来排除它,而不是通过不指定子规范来安装所有子规范。

要找出将任何特定依赖项添加到您的项目的原因,请参阅 Podfile.lock 文件。