Interface LibraryBinaryIdentifier
-
- All Superinterfaces:
ComponentIdentifier
public interface LibraryBinaryIdentifier extends ComponentIdentifier
An identifier for a library instance that is built as part of the current build.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getLibraryName()
The name of the libraryjava.lang.String
getProjectPath()
The project path of the library.java.lang.String
getVariant()
The variant of the library.-
Methods inherited from interface org.gradle.api.artifacts.component.ComponentIdentifier
getDisplayName
-
-
-
-
Method Detail
-
getProjectPath
java.lang.String getProjectPath()
The project path of the library.- Returns:
- The project path of the library.
-
getLibraryName
java.lang.String getLibraryName()
The name of the library- Returns:
- the name of the library
-
getVariant
java.lang.String getVariant()
The variant of the library.- Returns:
- the variant identifier of the library.
-
-