copyIcLauncherAndroid method

void copyIcLauncherAndroid(
  1. String flavor
)

Implementation

void copyIcLauncherAndroid(String flavor) {
  final from = join(current, 'ic_launcher', flavor, 'android');
  final to = join(current, 'android', 'app', 'src', 'main', 'res');

  copyTree(from, to, overwrite: true);
}