I'm trying to add a cocoapod dependency to my proj...
# multiplatform
c
I'm trying to add a cocoapod dependency to my project, but the
import cocoapods.*
package does not become available. If I remove the import directive the project builds find and I also see the cocoapod files in the build folder.
Copy code
cocoapods {
        summary = "CocoaPods test library"
        homepage = "<https://github.com/JetBrains/kotlin>"
        version = "1.0"
        ios.deploymentTarget = "14.1"
        pod("AFNetworking") {
            version = "~> 4.0.1"
        }
    }
That's my setup, but I can't import
import cocoapods.AFNetworking.*
...
Was missing
kotlin.mpp.enableCInteropCommonization=true
in
gradle.properties