Currently trying to setup a Kotlin Multiplatform l...
# multiplatform
d
Currently trying to setup a Kotlin Multiplatform library, which should make use of another Kotlin (Native) library. The preferred way would be having the dependency as a submodule. Does anyone know if that’s possible and how to approach this?
r
You can include another gradle module similar to how you would for a single-platform gradle project. e.g.
implementation(project(":my-native-module"))
in your native dependencies
👍 1