Cocoapods:如何自动安装依赖项

时间:2020-10-21 09:11:07

标签: ios xcode cocoapods

我注意到当我放置pod 'Firebase/Auth'并运行pod install时,它会自动安装Firebase / Auth的依赖项,而无需我在Podfile中指定任何依赖项。

Installing Firebase (6.34.0)
Installing FirebaseAuth (6.9.2)
Installing FirebaseCore (6.10.4)
Installing FirebaseCoreDiagnostics (1.7.0)
Installing GTMSessionFetcher (1.4.0)
Installing GoogleDataTransport (7.5.1)
Installing GoogleUtilities (6.7.2)
Installing PromisesObjC (1.2.11)
Installing SonSeoUtilities (0.0.1)
Installing nanopb (1.30906.0)

我想为我的广告连播复制此行为。目前,我正在像这样在我的Podspec中指定依赖项:

spec.dependency 'ABC', '~>0.0'
spec.dependency 'Firebase/Auth', '~>6.0'

问题在于它不会自行安装依赖项。如果我未在Podfile中指定依赖项,它只会引发错误。

0 个答案:

没有答案