Qracle
12/29/2020, 1:01 AMJoaquim Ley
12/29/2020, 3:42 PMQracle
12/29/2020, 10:23 PMshared
but had trouble building, saw some issue when running packForXCode “cannot convert URL”.
So just to clarify, I’ll have the smaller KMMs at the top level, but included in the shared
module ? i can build okay with them at the top level.mdabrowski89
12/30/2020, 10:11 AMcommon-shared
module and feature-shared
module (feature was dependent from common). The issue was that after building the iOS framework the classes from common-shared
was not visible in the iOS project. In fact only the once used in feature-shared
was visible. Later I’ve change the building method from packForXCode to Multiplatform Swift Package but the results was the same. Please let me know if you will be able to workaround this issue.Qracle
12/30/2020, 10:39 PMandroid-app
, ios-app
) -> feature-shared
-> common-shared
, but classes from common-shared
aren’t showing up ?Qracle
12/30/2020, 10:42 PMfeature-shared
since it has the dependencies it needs from common-shared
mdabrowski89
12/30/2020, 11:04 PMfeature2-shared
and for example extract (from both shared features) some common model classes to common-shared
then I could not be able to access those classes in ios-app
. But anyway I’ve done some research today and I found that dependencies of shared modules could also be exported to the ios framework - link. So that is probably resolving my case 🙂Qracle
12/30/2020, 11:06 PMcommon-shared
had a model class like Dog
you want to be able to reference that in ios-app
?mdabrowski89
12/30/2020, 11:07 PMQracle
12/30/2020, 11:07 PMmdabrowski89
12/30/2020, 11:14 PM