:warning: Should I be worried about the warnings in image below? :point_down: I'm seeing a lot of i...
d
⚠️ Should I be worried about the warnings in image below? 👇 I'm seeing a lot of it after upgrading to
1.4.30
/ Compose
alpha12
, and setting:
Copy code
kotlinOptions {
            jvmTarget = "15"
            ...
...which appears necessary to use the new IR compiler in
1.4.30
j
What leads you to believe you need
jvmTarget = "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?