Package com.android.builder.model.level2
Interface DependencyGraphs
public interface DependencyGraphs
A set of dependency Graphs.
It contains both the compile and the package graphs, through the latter could be empty in
non full sync.
Each graph is fairly lightweight, with each artifact node being mostly an address, children,
and modifiers that are specific to this particular usage of the artifact rather than
artifact properties.*
-
Method Summary
Modifier and TypeMethodDescriptionReturns the compile dependency graph.Returns the package dependency graph.Returns the list of provided libraries.Returns the list of skipped libraries.
-
Method Details
-
getCompileDependencies
Returns the compile dependency graph. -
getPackageDependencies
Returns the package dependency graph. Only valid in full dependency mode. -
getProvidedLibraries
Returns the list of provided libraries. The values in the list match the values returned byGraphItem.getArtifactAddress()andLibrary.getArtifactAddress(). Only valid in full dependency mode. -
getSkippedLibraries
Returns the list of skipped libraries. The values in the list match the values returned byGraphItem.getArtifactAddress()andLibrary.getArtifactAddress(). Only valid in full dependency mode.
-