File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ tasks.register('projectDependencyGraph') {
1010 dot << ' node [style=filled, fillcolor="#bbbbbb"];\n '
1111 dot << ' rankdir=TB;\n '
1212
13- def rootProjects = []
13+ def rootProjects = new LinkedHashSet< Project > ()
1414 def queue = [rootProject]
1515 while (! queue. isEmpty()) {
1616 def project = queue. remove(0 )
@@ -44,7 +44,7 @@ tasks.register('projectDependencyGraph') {
4444 if (project. plugins. hasPlugin(' com.android.library' )) {
4545 androidLibraryProjects. add(project)
4646 }
47- if (project. plugins. hasPlugin(' com.android.dynamic-core ' )) {
47+ if (project. plugins. hasPlugin(' com.android.dynamic-feature ' )) {
4848 androidDynamicFeatureProjects. add(project)
4949 }
5050 if (project. plugins. hasPlugin(' java-library' ) || project. plugins. hasPlugin(' java' )) {
You can’t perform that action at this time.
0 commit comments