We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b92ebf8 commit cd51a51Copy full SHA for cd51a51
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