Hello. I am trying to understand the benefits of `...
# compose
k
Hello. I am trying to understand the benefits of
Copy code
composeOptions {
        kotlinCompilerExtensionVersion = ""
    }
over
Copy code
suppressKotlinVersionCompatibilityCheck
Can someone direct me to a good explanation of them or explain a bit, if suppressKotlinVersionCompatibilityCheck gives us some benefit to avoid version conflicts between SDK and apps.
s
The name
suppressKotlinVersionCompatibilityCheck
makes it pretty clear that you are in a situation where you are merely suppressing the warning that you are using two versions that are not guaranteed to work with each other. So if something breaks it’s to be expected. You should always try to make sure you got the right
kotlinCompilerExtensionVersion
and not simply suppress the warning that exists for a good reason.
k
Thanks 🙂