Configuring the Android Plugin

Configure the Orchestration Plugin if you choose to override the default plugin configuration.

Kotlin
Groovy
mxo { enabled.set(true) classProcessing { logToFile.set(layout.buildDirectory.file("test.log")) properties.set(mapOf("foo" to "bar")) } }mxo { enabled = true classProcessing { logfile = new File("$buildDir/test/custom.log") properties.put("foo", "bar") } }