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