createBrandingImageForAndroid12 function
Create branding image for the Android 12+
Implementation
Future<void> createBrandingImageForAndroid12(
String drawableFolder,
File brandingImageSource,
) async {
final imagePath = '$drawableFolder/${AndroidStrings.android12BrandingImage}';
/// Creating a branding image from the provided asset source
await _replaceFileFromSource(
source: brandingImageSource,
destinationPath: imagePath,
);
log("Branding image added");
}