We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 065a37a commit c668437Copy full SHA for c668437
build-artifacts/project-template-gradle/build.gradle
@@ -145,6 +145,8 @@ def applyAppGradleConfiguration = { ->
145
if (appGradle.exists()) {
146
println "\t + applying user-defined configuration from ${appGradle}"
147
apply from: pathToAppGradle
148
+ } else {
149
+ println "\t + couldn't load user-defined configuration from ${appGradle}. File doesn't exist."
150
}
151
152
@@ -225,6 +227,8 @@ android {
225
227
226
228
229
230
+ applyAppGradleConfiguration()
231
+
232
def dimensions = applyPluginsIncludeGradleConfigurations()
233
234
flavorDimensions(*dimensions)
0 commit comments