All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.mobilej.UnmockParameters Maven / Gradle / Ivy

Go to download

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy