basher
05/24/2019, 6:54 PMexport
thing in binaries.framework
, but that doesn't seem to work. Anyone else have success with this?Kris Wong
05/24/2019, 7:06 PMrusshwolf
05/24/2019, 7:23 PMexport
you're using is for creating a framework from your Kotlin/Native code which you can then call into from a Swift/Obj-C project. What you probably want is cinterop to be able to access an existing framework from KotlinKris Wong
05/24/2019, 7:32 PMexport
keyword and I am mistaken. that's exactly it's use case. how is the dependency your using specified in your build.gradle?Sam
05/24/2019, 7:39 PMKris Wong
05/24/2019, 7:47 PMapi
in the build.gradle can be exportedbasher
05/24/2019, 8:45 PMexport 'com.somegroup.project:project:version'
export
should work, right?