向每个目标添加相同的 pod 是多余的。
def RedundantPod
pod "Pod"
end
target 'targetOne' do
RedundantPod
end
target 'targetTwo' do
RedundantPod
end
以下设置引发类型错误:[ ! ] Invalid Podfile file: uninitialized constant
. 这里有什么问题?