dev.nokee.platform.nativebase.internal.dependencies.BinaryAwareNativeComponentDependencies Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of platformNative Show documentation
Show all versions of platformNative Show documentation
Painless native development in Gradle
The newest version!
package dev.nokee.platform.nativebase.internal.dependencies;
import dev.nokee.platform.nativebase.NativeComponentDependencies;
import javax.inject.Inject;
public abstract class BinaryAwareNativeComponentDependencies extends AbstractBinaryAwareNativeComponentDependencies implements NativeComponentDependencies {
@Inject
public BinaryAwareNativeComponentDependencies(NativeComponentDependencies delegate, NativeIncomingDependencies incoming, NativeOutgoingDependencies outgoing) {
super(delegate, incoming, outgoing);
}
}