Skip to content
This repository has been archived by the owner on Oct 28, 2022. It is now read-only.

Compiler Options

Kaustubh Patange edited this page Apr 6, 2021 · 1 revision

Table of contents

Setup

Autobindings provides some set of compiler options that can be changed through gradle build scripts.

android {
    ...
    defaultConfig {
        ...
        javaCompileOptions {
            annotationProcessorOptions {
                arguments += [
                    "autobindings.incremental":"false",
                    ...
                ]
            }
        }
    }
}

Configurations

Option Information Default Added in
autobindings.incremental Instructs the compiler to support incremental annotation processing. true 1.1-beta03