向每个目标添加相同的 pod 是多余的。
def RedundantPod
pod "od"
end
target 'targetOne' do
RedundantPod
end
target 'targetTwo' do
RedundantPod
end
以下设置会引发错误类型:[ ! ] 无效的 Podfile 文件:未初始化的常量 。这里有什么问题?
Best Answer-推荐答案 strong>
对于 future 的读者,问题来自命名 RedundantPod ,它不应该以大写字母 R 开头。
确实,以大写字母开头的名称在 Ruby 中是常量。仍然可以为方法使用常量名称,但您将无法在没有括号的情况下调用它,因为解释器会将名称查找为常量。
您需要显式调用该方法:
或不带大写重命名:
关于ios - 无效的 `Podfile` 文件 : uninitialized constant,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/46815915/
|