TIL: we can add `transitiveExport=true` flag if we...
# multiplatform
a
TIL: we can add
transitiveExport=true
flag if we want to export all classes from transitive dependencies to the iOS Framework (not only explicitly used classes).
Copy code
ios {
    binaries {
        framework {
            // deps here
            transitiveExport = true
        }
    }
}
❤️ 5