I've got tons of errors like `error: incompatible ...
# gradle
r
I've got tons of errors like
error: incompatible types: NonExistentClass cannot be converted to Annotation @error.NonExistentClass()
. The actual annotation in the files is
Parcelize
✔️ 1
k
Do you have an
androidExtensions { }
block in your build file?
r
Copy code
androidExtensions {
    isExperimental = true
}
I read something about this not working in kotlin-dsl?
k
Yea. Change it to:
Copy code
androidExtensions {
    configure(delegateClosureOf<AndroidExtensionsExtension> {
        isExperimental = true
    })
}
r
Thanks, that works
👍 1