I have a Multi Module KMP + CMP Project with a separate Non-CMP module just for Data Models
Now whats happening is that when I generate Compose Compiler Report, all my composable which take those models as parameter as shown as "Not Stable"
The solution I know is to make that data models module a CMP Module, add
compose-runtime
and mark all data classes with
@immutable
, but I dont want to make my data layer modules a CMP Module
Is there any other way of achieving it?