Christopher Mederos
11/16/2023, 10:29 PMshared module can be imported in swift code with no issue. However, class from my second client.shared module are imported in swift with an additional Client_shared prefix added to every class name. For example, com.xyz.client.shared.ApplicationUser becomes Client_sharedApplicationUser. Is there a way to configure or setup my project so that I don't get this prefix?Daniel Seither
11/20/2023, 8:48 AMChristopher Mederos
11/21/2023, 3:38 AMcocoapods {
summary = "Some description for the Shared Module"
homepage = "Link to the Shared Module homepage"
version = "1.0"
ios.deploymentTarget = "14.1"
podfile = project.file("../iosApp/Podfile")
framework {
baseName = "shared"
export(project(":client-shared"))
}
}