Is my understanding of the framework `isStatic` op...
# kotlin-native
k
Is my understanding of the framework
isStatic
option correct in that when embedded within cocoapods, dependencies would be statically linked to the output framework and the consuming iOS application wouldn't have to introduce that cocoapods dep?
Copy code
kotlin {
  cocoapods {
    framework {
      isStatic = true
    }
  }
}