thunderbiscuit
09/12/2023, 1:02 PMJeff Lockhart
09/12/2023, 2:49 PM@objc
attribute marking the public API?thunderbiscuit
09/12/2023, 3:03 PMJeff Lockhart
09/12/2023, 3:06 PM@objc
, you could use Objective-C interop to add the library and generate Kotlin bindings to call from your Apple native source sets. Then use `expect`/`actual` to make a common API that is implemented with platform libraries.Pete Hellyer
09/12/2023, 3:06 PM@objc
wrapper class, and create the appropriate headers in order to build the bindings for the the swift-only APIJeff Lockhart
09/12/2023, 3:07 PMJeff Lockhart
09/12/2023, 3:08 PMat least not in the source file (would that be somewhere else?)
It would be in the Swift source files, yes, above the function definitions.
thunderbiscuit
09/12/2023, 3:15 PMJeff Lockhart
09/12/2023, 3:22 PMthunderbiscuit
09/12/2023, 3:29 PM