de.mobilej.UnmockParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unmockplugin Show documentation
Show all versions of unmockplugin Show documentation
Gradle plugin to be used in combination with the new unit testing feature of the Gradle Plugin / Android Studio to use real classes for e.g. SparseArray.
The newest version!
package de.mobilej;
import org.gradle.api.GradleException;
import org.gradle.api.artifacts.transform.TransformParameters;
import org.gradle.api.tasks.*;
import javax.inject.Inject;
import java.io.File;
import java.util.List;
interface UnmockParameters extends TransformParameters {
@Input
List getKeepClasses();
void setKeepClasses(List newValue);
@Input
List getRenameClasses();
void setRenameClasses(List newValue);
@Input
List getDelegateClasses();
void setDelegateClasses(List newValue);
@InputFile
@PathSensitive(PathSensitivity.NONE)
File getTmpDir();
void setTmpDir(File newValue);
}