Adding identical pods to each target is redundant.
def RedundantPod
pod "Pod"
end
target 'targetOne' do
RedundantPod
end
target 'targetTwo' do
RedundantPod
end
The following setup throws an error of type: [ ! ] Invalid Podfile file: uninitialized constant
. What is wrong here?