post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if config.name == 'Test'
config.build_settings['ENABLE_TESTABILITY'] = 'YES'
end
end
end
end
# generated_projects only returns results if the we run "pod install --clean-install"
# or install a pod for the first time
installer.generated_projects.each do |project|
project.build_configurations.each do |configuration|
configuration.build_settings["ENABLE_TESTABILITY"] = "YES"
end
end
我是一个初学者,我只是不记得在 Xcode 所有的设置和选项都在哪里。所以当我在回答这类问题时看到“ you can set xxx to yyy...”,我总是感到沮丧。Xcode 的那些东西呢?那些是什么?我们需要一张地图来显示我们如何完成任务,而不是另一条线索,比如 xxx。看来我们是《国家宝藏》里的尼古拉斯 · 凯奇!