I am using SKIE to generate swift files in a share...
# touchlab-tools
j
I am using SKIE to generate swift files in a shared module. Would it be possible to add the Swift files created by protoc to the shared module together the SKIE ones? I would like to avoid adding the gRPC setup into the ios application but keep everything under the shared library. I guess adding
gRPC-Swift
and
SwiftProtobuf
via Kotlin cocoapods plugin should be trivial, but I am not sure about if I can run protoc and using the same SKIE folder as output directory without breaking SKIE.
t
You could generate the Swift code into
src/iosMain/swift
directory and SKIE will pick it up. Unfortunately if those files require a Swift dependency, that's not yet supported
thank you color 1