hello i have this error
# multiplatform
p
hello i have this error
j
Provide the code, otherwise it will be difficult to help…
p
I wanted to add a new activity and it brought me this error
image_2023-05-08_160252792.png
j
You can't use two Kotlin plugins in the same project. You will either use
id("org.jetbrains.kotlin.android")
(or
kotlin("android")
which is the same) for a Kotlin Android app or library or
kotlin("multiplatform")
for a multiplatform shared module. In your case, assuming this is a multiplatform shared module, you should remove
id("org.jetbrains.kotlin.android")
.
p
@Jeff Lockhart thanks