public interface JniLibraryDependencies
| Modifier and Type | Method and Description |
|---|---|
void |
api(java.lang.Object notation)
Adds an JVM API dependency to this library.
|
void |
api(java.lang.Object notation,
org.gradle.api.Action<? super org.gradle.api.artifacts.ExternalModuleDependency> action)
Adds an JVM API dependency to this library.
|
void |
jvmImplementation(java.lang.Object notation)
Adds an JVM implementation dependency to this library.
|
void |
jvmImplementation(java.lang.Object notation,
org.gradle.api.Action<? super org.gradle.api.artifacts.ExternalModuleDependency> action)
Adds an JVM implementation dependency to this library.
|
void |
nativeImplementation(java.lang.Object notation)
Adds an native implementation dependency to this component.
|
void |
nativeImplementation(java.lang.Object notation,
org.gradle.api.Action<? super org.gradle.api.artifacts.ExternalModuleDependency> action)
Adds an native implementation dependency to this component.
|
void api(java.lang.Object notation)
notation - The dependency notation, as per DependencyHandler.create(Object).void api(java.lang.Object notation,
org.gradle.api.Action<? super org.gradle.api.artifacts.ExternalModuleDependency> action)
notation - The dependency notation, as per DependencyHandler.create(Object).action - The action to run to configure the dependency.void jvmImplementation(java.lang.Object notation)
notation - The dependency notation, as per DependencyHandler.create(Object).void jvmImplementation(java.lang.Object notation,
org.gradle.api.Action<? super org.gradle.api.artifacts.ExternalModuleDependency> action)
notation - The dependency notation, as per DependencyHandler.create(Object).action - The action to run to configure the dependency.void nativeImplementation(java.lang.Object notation)
notation - The dependency notation, as per DependencyHandler.create(Object).void nativeImplementation(java.lang.Object notation,
org.gradle.api.Action<? super org.gradle.api.artifacts.ExternalModuleDependency> action)
notation - The dependency notation, as per DependencyHandler.create(Object).action - The action to run to configure the dependency.