Skip to content

Commit dc50c28

Browse files
committed
fix(android): going recursive is pretty dangerous and should not be needed
1 parent 16bc22d commit dc50c28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vendor/gradle-plugin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ task addDependenciesFromNativeScriptPlugins {
329329
project.dependencies.add("implementation", [name: fileName, ext: "aar"])
330330
}
331331

332-
def jarFiles = fileTree(dir: getDepPlatformDir(dep), include: ["**/*.jar"])
332+
def jarFiles = fileTree(dir: getDepPlatformDir(dep), include: ["*.jar"])
333333
jarFiles.each { jarFile ->
334334
def jarFileAbsolutePath = jarFile.getAbsolutePath()
335335
outLogger.withStyle(Style.SuccessHeader).println "\t + adding jar plugin dependency: $jarFileAbsolutePath"

0 commit comments

Comments
 (0)