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 2c27797 commit 6f5519fCopy full SHA for 6f5519f
build-artifacts/project-template-gradle/app/build.gradle
@@ -96,6 +96,12 @@ def applyPluginsIncludeGradleConfigurations = { ->
96
if (!androidDir.exists()) {
97
return
98
}
99
+
100
+ FileTree allFilesExceptForAars = fileTree(dir: androidDir, exclude: "**/*.aar");
101
+ if(allFilesExceptForAars.size() <= 0) {
102
+ return;
103
+ }
104
105
def includeGradleFile = new File(androidDir, "include.gradle")
106
107
def packageJsonPath = file("$rootDir/${dep.directory}/package.json")
0 commit comments