changeAppName static method
Implementation
static Future<void> changeAppName({
required String projectName,
required String appName,
required String path
}) async {
await FileService.updateFileContent(
oldString: projectName,
newString: appName,
filePath: path + _fileAndroidManifestPath
);
}