How to copy flavor respective files

I have two product flavors like:

productFlavors{

honda {

packageName “com.test.android.app”

}

phone {

packageName “com.test.android.app”

}

}

I have a manifest folder structure like:

honda/AndroidManifest.xml

phone/AndroidManifest.xml

Now, I have to copy (by using Task Copy, if possible) honda manifest to honda flavor and phone manifest to phone flavor.

How to achieve this? thanks in advance