CB-8891 Add a note about when the gradle helpers were added

This commit is contained in:
Andrew Grieve 2015-04-22 09:53:13 -04:00
parent 9ff786d021
commit bce4283239

View File

@ -184,7 +184,9 @@ ext {
// These helpers can be used by plugins / projects and will not change.
cdvHelpers = {}
// Returns a XmlParser for the config.xml. Added in 4.1.0.
cdvHelpers.getConfigXml = { doGetConfigXml() }
// Returns the value for the desired <preference>. Added in 4.1.0.
cdvHelpers.getConfigPreference = { name, defaultValue -> doGetConfigPreference(name, defaultValue) }
}