now im getting "java.lang.UnsupportedClassVersionE...
# compose-desktop
z
now im getting "java.lang.UnsupportedClassVersionError: org/jetbrains/skiko/Library has been compiled by a more recent version of the Java Runtime (class file version 55.0), this version of the Java Runtime only recognizes class file versions up to 54.0"
i know this means im on jdk 10 but i cant figure out how to change it to jdk 11
its jdk 11 in the path, and i have
Copy code
java {
    sourceCompatibility = JavaVersion.VERSION_11
    targetCompatibility = JavaVersion.VERSION_11
}
in build.gradle.kts
ok figured it out
just needed to edit in in the gradle settings of intellij
a