We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6b10b78 + 2e61acc commit f8d337fCopy full SHA for f8d337f
build/project-template-gradle/build.gradle
@@ -260,7 +260,11 @@ task createPluginsConfigFile {
260
println "\t+creating product flavors include.gradle file in $configurationsDir folder..."
261
def flavors = pluginNames.join(",")
262
if(appResExists) {
263
- flavors = '"' + appResourcesName + '", ' + flavors
+ if (flavors == '') {
264
+ flavors = '"' + appResourcesName + '"'
265
+ } else {
266
+ flavors = '"' + appResourcesName + '", ' + flavors
267
+ }
268
}
269
flavorsFile << "android { \n"
270
flavorsFile << "\tflavorDimensions " + flavors + "\n"
0 commit comments