我正在尝试pod更新,但出现此错误
[!]无效的
Podfile
文件:[!]无法为抽象目标定义设置继承
关于
target 'Project-IntegrationTests'
inherit! :search_paths
pod 'OCMock', '= 3.1.2'
答案 0 :(得分:0)
platform :ios, '12.0'
inhibit_all_warnings!
use_frameworks!
source 'https://github.com/CocoaPods/Specs.git'
def testPods
pod 'OCMock', '= 3.1.2'
end
target 'Project-IntegrationTests' do
testPods
end
并非所有标志都是必需的。