public interface XcodeIdeBuildSettings
It is assumed that Xcode will be delegating to Gradle for most of the build requirements.A build setting is a variable that contains information about how a particular aspect of a product’s build process should be performed. For example, the information in a build setting can specify which options Xcode passes to the compiler.
—Xcode Build Settings Concept
Modifier and Type | Method and Description |
---|---|
Provider<Map<String,Object>> |
getElements()
Returns the elements of the build settings.
|
XcodeIdeBuildSettings |
put(String name,
Object value)
Puts a new build setting entry for the specified name and value.
|
XcodeIdeBuildSettings |
put(String name,
Provider<Object> value)
Puts a new build setting entry for the specified name and value.
|
Provider<Map<String,Object>> getElements()
XcodeIdeBuildSettings put(String name, Provider<Object> value)
Object.toString()
when resolved.name
- the name of the build setting to put, must not be null.value
- the value provider of the build setting to put, must not be null.XcodeIdeBuildSettings put(String name, Object value)
Object.toString()
when resolved.name
- the name of the build setting to put, must not be null.value
- the value of the build setting to put, must not be null.