You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
496 B

package android.databinding.layouts;
import android.databinding.BindingBuildInfo;
/**
* Template for the file that feeds data binding's annotation processor. The
* processor reads the values set here to generate .java files that link XML
* data binding declarations (from layoutInfoDir) to app code.
*/
@BindingBuildInfo(
buildId="not_used_here" // Adds incrementality, which Bazel already supports
)
public class DataBindingInfo {
/* This only exists for annotation processing. */
}