samuel
03/12/2021, 7:32 PMsamuel
03/12/2021, 7:32 PMcom.intellij.diagnostic.PluginException: While loading class org.jetbrains.skiko.SkiaLayer: org/jetbrains/skiko/SkiaLayer 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 52.0
Looking at the build details of Android studio 4.1.2, i notice the runtime version is 1.8.0_242-release-1644-b3-6915495 x86_64
. Is it possible to run compose intellij plugins in Android Studio?jim
03/12/2021, 7:36 PMtasks.withType(KotlinCompile).configureEach {
kotlinOptions {
jvmTarget = "1.8"
}
}
samuel
03/12/2021, 7:37 PMjim
03/12/2021, 7:40 PMorg/jetbrains/skiko/SkiaLayer
- sorry I missed that the first time around.jim
03/12/2021, 7:40 PMjim
03/12/2021, 7:40 PMjim
03/12/2021, 7:41 PMsamuel
03/12/2021, 7:41 PMsamuel
03/12/2021, 8:24 PM