darkmoon_uk
02/11/2021, 1:51 AM1.4.30
/ Compose alpha12
, and setting:
kotlinOptions {
jvmTarget = "15"
...
...which appears necessary to use the new IR compiler in 1.4.30
jim
02/11/2021, 8:00 AMjvmTarget = "15"
? I'm pretty sure I have some code using 1.4.30
with jvmTarget = "1.8"
so I'm a little curious where you're seeing that 15
is required, especially considering that 15
just came out late last year so such a requirement seems very unlikely/surprising.
I think the warning is telling you that your class files have a target that is greater than the maximum officially supported target (11).
incidentally, are you building for Desktop or Android?