I want different product flavors of an android app to have their own asset packs (or possibly none at all). Tried something like
android {
productFlavors {
one {
assetPacks[":pack1"]
}
two {
assetPacks[":pack2"]
}
three {
}
}
}
but this just uses the last line encountered for all flavors, so that all of them include pack2. Any suggestions?