gpt4 book ai didi

Cocoapods pod install 给出了未定义的方法继承

转载 作者:行者123 更新时间:2023-12-03 13:58:21 24 4
gpt4 key购买 nike

我收到这个奇怪的错误。如果我查看 cocoapod 规范,这似乎是一种有效的语法。我究竟做错了什么。?

[!] Invalid `Podfile` file: undefined method `inherit!' for #<Pod::Podfile:0x007fad141d1050>. Updating CocoaPods might fix the issue.

# from /Users/Downloads/EarlGrey-master/Demo/EarlGreyExample/Podfile:28
# -------------------------------------------
# target TEST_TARGET do
> inherit! :search_paths
# pod 'EarlGrey'

最佳答案

打开您的 Podfile 并删除 Project_Tests 块。

例如,

以下给出错误:

use_frameworks!

target 'MyPodProject_Example' do
pod 'MyPodProject', :path => '../'

target 'MyPodProject_Tests' do
inherit! :search_paths


end
end

成功:
use_frameworks!

target 'MyPodProject_Example' do

pod 'MyPodProject', :path => '../'

end

然后做 pods 更新 (在终端)。这将创建 .xcworkspace

关于Cocoapods pod install 给出了未定义的方法继承,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35461505/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com