I was able to export another project inside the iO...
# multiplatform
s
I was able to export another project inside the iOS target using gradle for KMP, but wanted to do the same thing for the JS target.
Copy code
ios {
        binaries {
            framework {
                baseName = "PlayerSDK"

                export(project(":dataSourceCore"))
            }
        }
}
Is that possible?