Just in case anyone is wondering, I fixed my probl...
# kapt
j
Just in case anyone is wondering, I fixed my problem with the following kapt config (not using the plugin yet)
Copy code
kapt {
    generateStubs = true
    arguments {
        arg("androidManifestFile", variant.outputs[0]?.processResourcesTask?.manifestFile
                ?: "$project.projectDir/src/main/AndroidManifest.xml")
        arg("resourcePackageName", "dk.gomore.gomore")
        arg("logLevel", "ERROR")
    }
}