You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can see how the code can iterate over existing build configurations but not how to make a new one. For example I tried the following:
build_configurations = [
# Pick some specific items per config
{'name' => "MyConfig"},
# more configs here
]
target = project.targets[0]
build_configurations.each do |config|
# Define defaults for all configs
config['isa'] = "XCBuildConfiguration"
project.targets.first.build_configurations.push(config)
end
project.save
But I receive the error
`nested_object_for_hash': undefined method `uuid' for ...
The text was updated successfully, but these errors were encountered:
I can see how the code can iterate over existing build configurations but not how to make a new one. For example I tried the following:
But I receive the error
The text was updated successfully, but these errors were encountered: