Gustav Tross
04/29/2024, 1:28 PMsourceSets {
...
implementation(projects.moduleA)
...
}
For our ios client we then build this as a XCFramework with ./gradlew ...assemble...ReleaseXCFramework and add both modules as libraries
Would it be possible for the ios client to then only hold one reference to the Person object?
Right now two different objects would get exposed, ModuleA.Person & ModuleB.ModuleAPerson which can not be used interchangeably.Maxime Vince
04/29/2024, 1:45 PMGustav Tross
05/02/2024, 4:40 AM