appgen
01/09/2025, 1:11 AMcomposeApp
module adds the shared
module as a dependency.
on iOSApp i have
import ComposeApp
am able to access classes in ComposeApp
However am not able to access classes in the shared
module.
am getting cannot find 'MySharedClass' in scope.
My understanding is that if the shared
module is added as a dependency to ComposeApp
, then all the classes should be available in the generated framework.
Anyone facing similar issue? could we be having any documentation for this? any solutions?Ivan Kubyshkin [JetBrains]
01/09/2025, 11:15 AMrusshwolf
01/09/2025, 3:33 PMshared
. See https://kotlinlang.org/docs/multiplatform-build-native-binaries.html#export-dependencies-to-binariesappgen
01/10/2025, 7:27 AM