I’ve noticed that `kotlinCompilerVersion` in `comp...
# compose
p
I’ve noticed that
kotlinCompilerVersion
in
composeOptions
got deprecated in recent android gradle api, but removing it generates
IncompatibleComposeRuntimeVersionException
.
🤔 What’s the proper way to migrate?
Copy code
@Deprecated("")
var kotlinCompilerVersion: String?
There was another reason for this exception to be thrown 🤦 . Self-answering my question:
kotlinCompilerVersion
can be safely removed.