https://kotlinlang.org logo
Title
r

ribesg

09/27/2018, 1:04 PM
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

kingsley

09/27/2018, 1:07 PM
Do you have an
androidExtensions { }
block in your build file?
r

ribesg

09/27/2018, 1:08 PM
androidExtensions {
    isExperimental = true
}
I read something about this not working in kotlin-dsl?
k

kingsley

09/27/2018, 1:08 PM
Yea. Change it to:
androidExtensions {
    configure(delegateClosureOf<AndroidExtensionsExtension> {
        isExperimental = true
    })
}
r

ribesg

09/27/2018, 1:10 PM
Thanks, that works
👍 1