I don't seem to be able to register two different,...
# multiplatform
d
I don't seem to be able to register two different, named Android targets in Kotlin/MP e.g.
Copy code
kotlin {
    android("standardAndroid") { ... }
    android("specialAndroid") { ... }
}
Get:
Cannot add extension with name 'kotlinOptions', as there is an extension already registered with that name.
...is this expected?
r