gh-pages / com.nextfaze.devfun.compiler / GENERATE_DEFINITIONS
GENERATE_DEFINITIONS
const val GENERATE_DEFINITIONS: String (source)
Flag to control generation of implementations of DevFunGenerated. (default: <true>)
Useful for testing or if you only want to generate annotation interfaces.
Set using APT options:
android {
     defaultConfig {
         javaCompileOptions {
             annotationProcessorOptions {
                 argument("devfun.definitions.generate", "false")
             }
         }
     }
}
See Also