renameAndroid static method
Implementation
static Future<void> renameAndroid(String filePath, String appName) async {
String data = await File(filePath).readAsString();
XmlDocument document = XmlDocument.parse(data);
var application =
document.children.first.findAllElements('application').first;
application.setAttribute('android:label', appName);
await saveFile(filePath, document.toXmlString());
printFinishMessage('android');
}