Is there a good way to force builds for Android to...
# multiplatform
l
Is there a good way to force builds for Android to use a different compiler version? Right now, Jetpack Compose specifically requires 1.5.10, but I have an import in iOS main that requires 1.5.21
I've tried kotlin("android") version "1.5.10" in the android build.gradle, but it says I can't set a version if the classpath already has a version defined.
m
Maybe this article by @John O'Reilly will help https://johnoreilly.dev/posts/kmm-using-different-kotlin-versions/