Method: FastlaneCore::Project#default_build_settings

Defined in:
fastlane_core/lib/fastlane_core/project.rb

#default_build_settings(key: nil, optional: true) ⇒ Object

Returns the build settings and sets the default scheme to the options hash


385
386
387
388
# File 'fastlane_core/lib/fastlane_core/project.rb', line 385

def default_build_settings(key: nil, optional: true)
  options[:scheme] ||= schemes.first if is_workspace
  build_settings(key: key, optional: optional)
end