has anyone figured out how to `apply plugin: 'kotl...
# multiplatform
k
has anyone figured out how to
apply plugin: 'kotlin-android'
in a MPP library?
Failed to apply plugin [id 'kotlin-android']
> Cannot add extension with name 'kotlin', as there is an extension already registered with that name.
got it... that plugin is not necessary, but you can still
Copy code
apply plugin: 'kotlin-android-extensions'
m
yea, it works with the multiplatform plugin
k
yeah definitely confusing
m
org.jetbrains.kotlin.multiplatform
k
m
yep, that looks good
k
compiler agrees 😃
👍 1