but then I went and looked at an old project and it had a kotlin only lib module that looked like this:
Copy code
plugins {
id("java-library")
id("kotlin")
}
So is there any diff between the second lines in both of these?
v
Vampire
01/17/2022, 12:07 AM
I'd say it should actually be
kotlin("jvm")
?
👌 1
j
Javier
01/17/2022, 1:28 AM
Yep,
java-library
is not necessary
v
Vampire
01/17/2022, 1:36 AM
That too, yeah
c
Colton Idle
01/17/2022, 4:50 AM
ooh. interesting. maybe I'll file a bug with the android studio team. Is there any "reasoning" behind it for when I file the bug besides saying "Hey you can update this template to say this instead?"