gh-pages / com.nextfaze.devfun.compiler / PACKAGE_OVERRIDE
PACKAGE_OVERRIDE
const val PACKAGE_OVERRIDE: String (source)
Sets the package for the generated code. (default: <none>)
This will override PACKAGE_ROOT and PACKAGE_SUFFIX.
Set using APT options:
android {
     defaultConfig {
         javaCompileOptions {
             annotationProcessorOptions {
                 argument 'devfun.package.override', 'com.my.full.pkg.devfun.generated'
             }
         }
     }
}