This is an Android project. I tried to exclude a resource file under assets folder. I tried
"aaptOptions {ignoreAssetsPattern "file.json"}"
But it excludes the file for all build variants.
I tried the following, but it still did not work.
android.variantFilter { variant -> if (variant.buildType.name.equals('release')) { variant.mergeAssets.doLast { delete(fileTree(dir: 'assets/filedir', includes: ['file.json'])) } } }
Please help. Thanks a lot.