deletingAndroidMenifest function

Future<void> deletingAndroidMenifest()

Deleting the Manifest File

This Function is use for deleting the Manifest file Sometimes file to give permssion in modifying the manifest folder. Therefore it will be a good option to delete it

Implementation

Future<void> deletingAndroidMenifest() async {
  final androidManifest = File(_androidManifestFile);
  print('[Android] Deleting the android manifest file');
  await androidManifest.writeAsString('');
}