Xcode Unit Testing with Cocoapods

前端 未结 14 1130
有刺的猬
有刺的猬 2020-12-07 11:52

I\'ve been banging my head against a wall with this for the last few days but despite multiple Google/SO/Github searches I can\'t find a resolution to the issues I\'m having

14条回答
  •  -上瘾入骨i
    2020-12-07 12:16

    Try changing the inheritance to :complete, as in:

    target 'MyAppTests' do
        inherit! :complete
    end
    

    Importantly it allows anyone else checking out your repo to just do a pod update as usual without having to copy .xcconfig files or other hackery just to build.

提交回复
热议问题