我有一个有这种口味的lib:
flavorDimensions "dim"
productFlavors {
nocustomer {
versionNameSuffix "-nocustomer"
dimension = "dim"
}
customer001 {
versionNameSuffix "-customer001"
dimension = "dim"
}
}
我的构建产生了这个文件:
如何使用不同口味的图书馆? 示例:我想构建一个使用nocustomer风格的应用程序。我应该在gradle app文件上写什么?要包含哪个库?