Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/ios/97.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
iOS中的Firebase性能监视_Ios_Objective C_Iphone_Cocoapods_Firebase Performance - Fatal编程技术网

iOS中的Firebase性能监视

iOS中的Firebase性能监视,ios,objective-c,iphone,cocoapods,firebase-performance,Ios,Objective C,Iphone,Cocoapods,Firebase Performance,我正在尝试安装Firebase文档中提到的pod Firebase/Performance,但当我尝试安装时,我遇到了问题 [!] Unable to satisfy the following requirements: - `Firebase/Performance` required by `Podfile` Specs satisfying the `Firebase/Performance` dependency were found, but they required a hi

我正在尝试安装Firebase文档中提到的pod Firebase/Performance,但当我尝试安装时,我遇到了问题

[!] Unable to satisfy the following requirements:

- `Firebase/Performance` required by `Podfile`

Specs satisfying the `Firebase/Performance` dependency were found, but they required a higher minimum deployment target.

这一错误具有误导性。如果(Firebase性能的)依赖项固定在低于Firebase性能要求的特定版本上,则通常会出现此消息。例如,如果您将Firebase/Analytics固定为3.x,则会出现该错误,因为Firebase性能需要4.x的Firebase/Core


总之,请尝试删除播客文件中与Firebase规范相关的任何版本PIN。

即使我的最低iOS部署目标是8.0,您的播客文件顶部有哪一行?类似于平台:ios,“9.0”,发布完整的podfile@RyanHeitner平台:ios,“8.0”是否包含Firebase/Core?@RyanHeitner是