In my build.gradle, I have this line in a task tha...
# multiplatform
s
In my build.gradle, I have this line in a task that doesn't build:
final def framework = kotlin.target.ios.binaries.getFramework("Toto", mode)
The error is:
Could not get unknown property 'target' for object of type org.jetbrains.kotlin.gradle.dsl.KotlinMultiplatformExtension.
Any clue someone? Gradle version is 5.6.2. Slack Conversation
k
targets
s
Was it ever like this or did it change along the way? In a few examples I saw, it was
target
.
k
it's always been
targets
AFAIK
👍 1