将 pod 'Firebase/AppIndexing' 和 pod 'FirebaseInAppMessaging' 添加到一起
Adding pod 'Firebase/AppIndexing' and pod 'FirebaseInAppMessaging' together
由于不同的版本依赖性,无法同时拥有两者
`[!] CocoaPods 找不到 pod "FirebaseAnalytics" 的兼容版本:
在快照中(Podfile.lock):
FirebaseAnalytics (= 3.9.0, ~> 3.7, ~> 3.8, ~> 3.9)
在播客文件中:
Firebase/Core被解析为3.17.0,这取决于
FirebaseAnalytics (= 3.9.0)
Firebase/RemoteConfig was resolved to 3.17.0, which depends on
FirebaseRemoteConfig (= 1.3.4) was resolved to 1.3.4, which depends on
FirebaseAnalytics (~> 3.7)
FirebaseInAppMessaging was resolved to 0.11.0, which depends on
FirebaseAnalytics (~> 5.1)`
做一个pod update
。 FirebaseInAppMessaging 是在 Firebase 5.x 中引入的,与 Firebase 3.x 不兼容。 Firebase/RemoteConfig
也需要更新为 5.x 才能兼容。
Firebase/AppIndexing
已在 Firebase 3.x 中弃用,应将其删除以使用更新的 Firebase 版本。
由于不同的版本依赖性,无法同时拥有两者
`[!] CocoaPods 找不到 pod "FirebaseAnalytics" 的兼容版本: 在快照中(Podfile.lock): FirebaseAnalytics (= 3.9.0, ~> 3.7, ~> 3.8, ~> 3.9)
在播客文件中: Firebase/Core被解析为3.17.0,这取决于 FirebaseAnalytics (= 3.9.0)
Firebase/RemoteConfig was resolved to 3.17.0, which depends on
FirebaseRemoteConfig (= 1.3.4) was resolved to 1.3.4, which depends on
FirebaseAnalytics (~> 3.7)
FirebaseInAppMessaging was resolved to 0.11.0, which depends on
FirebaseAnalytics (~> 5.1)`
做一个pod update
。 FirebaseInAppMessaging 是在 Firebase 5.x 中引入的,与 Firebase 3.x 不兼容。 Firebase/RemoteConfig
也需要更新为 5.x 才能兼容。
Firebase/AppIndexing
已在 Firebase 3.x 中弃用,应将其删除以使用更新的 Firebase 版本。