Hello, I've got an almost working KMM project whic...
# multiplatform
a
Hello, I've got an almost working KMM project which I'm unable to build because of some import within an Objective C-Header file. The import itself is a due to a transitive dependency to OpenSSL_Universal (such as 'openssl/bn.h', for example). The gradle build fails with the following error: 'openssl/bn.h' file not found. This would also happen within iOS projects as long as OpenSSL_Universal is not declared as an explicit dependency. It is afaik not common for frameworks to ship transitive dependencies when it comes to the iOS Software Dev toolchain. So what I've done is to add OpenSSL_Universal to my set of Cocoapods dependencies within my build.gradle.kts - however, the build still fails. Is there a way to resolve the issue in a way similar to what you'd to when using XCode (e.g. declaring OpenSSL_Universal as an explicit dependency)?