I’m struggling with gradle / groovy org.jetbrains....
# multiplatform
m
I’m struggling with gradle / groovy org.jetbrains.kotlin.gradle.plugin.mpp.Framework plugin because of lack of auto-complete. I’m trying to get the below block to work where it says ‘TODO’. Any ideas on what the syntax is or where I could find an example?
Copy code
// When using cocoapods plugin we can't configure the Framework directly.
targets.ios.binaries
        .findAll { it instanceof org.jetbrains.kotlin.gradle.plugin.mpp.Framework }
        .each {
            // TODO: How do I write this?
            //        export "com.arkivanov.mvikotlin:mvikotlin:$mviVersion"
        }