updateColorsXmlFile function
Retrieves the colors.xml file for the project.
If the colors.xml file is found, it is updated with a new color item for the adaptive icon background.
If not, the colors.xml file is created and a color item for the adaptive icon background is included in the new colors.xml file.
Implementation
void updateColorsXmlFile(String backgroundConfig, String? flavor) {
final File colorsXml = File(constants.androidColorsFile(flavor));
if (colorsXml.existsSync()) {
printStatus('Updating colors.xml with color for adaptive icon background');
updateColorsFile(colorsXml, backgroundConfig);
} else {
printStatus('No colors.xml file found in your Android project');
printStatus(
'Creating colors.xml file and adding it to your Android project');
createNewColorsFile(backgroundConfig, flavor);
}
}