- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在尝试添加 Geofirestore我在 GitHub 上找到的 pod 所以我可以将地理位置经度和纬度添加到社交媒体应用程序中的帖子中。我的 pod 文件看起来像这样
pod 'Firebase/Core'
pod 'Firebase/Auth'
pod 'Firebase/Firestore'
pod 'Firebase/Storage', '~> 4.0'
pod 'Geofirestore'
我在我的终端中运行了 pod repo update 和 pod install 但它没有工作,我收到了这个错误。
[!] CocoaPods could not find compatible versions for pod "FirebaseCore":
In snapshot (Podfile.lock):
FirebaseCore (= 4.0.20, ~> 4.0)
In Podfile:
Firebase/Core was resolved to 4.13.0, which depends on
FirebaseAnalytics (= 4.2.0) was resolved to 4.2.0, which depends on
FirebaseCore (~> 4.0)
Firebase/Core was resolved to 4.13.0, which depends on
FirebaseCore (= 4.0.20)
Geofirestore was resolved to 0.1.0, which depends on
FirebaseCore (~> 5.0.3)
[!] Automatically assigning platform `ios` with version `11.4` on target `My App` because no platform was specified. Please specify a platform for this target in your Podfile. See `https://guides.cocoapods.org/syntax/podfile.html#platform
最佳答案
您的 Podfile 中有 'Geofirestore'
:如错误消息所示,它需要 FirebaseCore (~> 5.0.3)
。
您的 Podfile 中有 'Firebase/Storage', '~> 4.0'
,这会让您使用 FirebaseCore (~> 4.0)
。
要同时使用两者,您需要从 Firebase 4 升级到 Firebase 5。即你需要:
pod 'Firebase/Storage', '~> 5.0'
关于swift - CocoaPods 找不到 pod "FirebaseCore": In snapshot (Podfile. 锁的兼容版本),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52033205/
例如,我有一个父类Author: class Author { String name static hasMany = [ fiction: Book,
代码如下: dojo.query(subNav.navClass).forEach(function(node, index, arr){ if(dojo.style(node, 'd
我有一个带有 Id 和姓名的学生表和一个带有 Id 和 friend Id 的 Friends 表。我想加入这两个表并找到学生的 friend 。 例如,Ashley 的 friend 是 Saman
我通过互联网浏览,但仍未找到问题的答案。应该很容易: class Parent { String name Child child } 当我有一个 child 对象时,如何获得它的 paren
我正在尝试创建一个以 Firebase 作为我的后端的社交应用。现在我正面临如何(在哪里?)找到 friend 功能的问题。 我有每个用户的邮件地址。 我可以访问用户的电话也预订。 在传统的后端中,我
我主要想澄清以下几点: 1。有人告诉我,在 iOS 5 及以下版本中,如果您使用 Game Center 设置多人游戏,则“查找 Facebook 好友”(如与好友争夺战)的功能不是内置的,因此您需要
关于redis docker镜像ENTRYPOINT脚本 docker-entrypoint.sh : #!/bin/sh set -e # first arg is `-f` or `--some-
我是一名优秀的程序员,十分优秀!